diff --git a/scripts/pull.sh b/scripts/pull.sh new file mode 100644 index 0000000..87ef04e --- /dev/null +++ b/scripts/pull.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +export UI_MODE=$1 +docker pull registry.chrz.de:443/move2docker:$UI_MODE-$(arch) \ No newline at end of file diff --git a/scripts/push.sh b/scripts/push.sh index 0639a1a..e834732 100644 --- a/scripts/push.sh +++ b/scripts/push.sh @@ -1,4 +1,4 @@ #!/bin/bash -docker push registry.chrz.de:443/move2docker:cli-$(arch) -docker push registry.chrz.de:443/move2docker:gui-$(arch) \ No newline at end of file +export UI_MODE=$1 +docker push registry.chrz.de:443/move2docker:$UI_MODE-$(arch) \ No newline at end of file