2020-09-27 13:03:45 +02:00
|
|
|
#!/bin/bash
|
2024-01-07 16:35:48 +01:00
|
|
|
# push new version of pan.do/ra to code.0x2620.org
|
2020-09-27 13:03:45 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
git clone https://code.0x2620.org/0x2620/pandora
|
|
|
|
cd pandora
|
|
|
|
./docker/build.sh
|
|
|
|
|
2024-01-07 19:33:29 +01:00
|
|
|
docker push code.0x2620.org/0x2620/pandora-base:latest
|
|
|
|
docker push code.0x2620.org/0x2620/pandora-nginx:latest
|
|
|
|
docker push code.0x2620.org/0x2620/pandora:latest
|