forked from 0x2620/pandora
13 lines
266 B
Bash
13 lines
266 B
Bash
|
#!/bin/bash
|
||
|
# push new version of pan.do/ra to docker hub
|
||
|
set -e
|
||
|
|
||
|
cd /tmp
|
||
|
git clone https://code.0x2620.org/0x2620/pandora
|
||
|
cd pandora
|
||
|
./docker/build.sh
|
||
|
|
||
|
docker push 0x2620/pandora-base:latest
|
||
|
docker push 0x2620/pandora-nginx:latest
|
||
|
docker push 0x2620/pandora:latest
|