File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33DEV=0
4- PUSH=1
4+ PUSH=0
55RUN_CONTAINER=0
66REBUILD_CONTAINER=0
77
@@ -19,8 +19,9 @@ for option in "$@"; do
1919 -d|--dev)
2020 DEV=1
2121 ;;
22- -n|--no-push)
23- PUSH=0
22+ -p|--push)
23+ PUSH=1
24+ echo " Push the container to GCR."
2425 ;;
2526 -r|--run)
2627 echo " Run the container after building it."
@@ -36,7 +37,7 @@ for option in "$@"; do
3637 echo " gcr.io/diamond-privreg/daq-config-server/<container-name> ready for deployment."
3738 echo " "
3839 echo " -d, --dev Creates -dev:latest tagged containers for testing on argus."
39- echo " -n , --no- push Don't push containers to GCR."
40+ echo " -p , --push Push the container to GCR."
4041 echo " -r, --run Run the container after building it."
4142 echo " -b, --rebuild Rebuild the container even if it already exists."
4243 echo " --help, --info, -h Show this help message."
You can’t perform that action at this time.
0 commit comments