From aacc992e53f3a5f9bc43ad3615561c0b7b63a582 Mon Sep 17 00:00:00 2001 From: Christoph Honal Date: Wed, 12 Feb 2020 18:21:18 +0100 Subject: [PATCH] scripts --- scripts/pull.sh | 4 ++++ scripts/push.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 scripts/pull.sh 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