From 4e3826eefcecc743d9398b1615429db85dc5157b Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Mon, 24 Jul 2023 13:01:20 +0200 Subject: [PATCH 1/3] Add webhook bash script --- .github/fiware/image-clone.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 .github/fiware/image-clone.sh diff --git a/.github/fiware/image-clone.sh b/.github/fiware/image-clone.sh new file mode 100755 index 000000000..e30d49e71 --- /dev/null +++ b/.github/fiware/image-clone.sh @@ -0,0 +1,32 @@ +set -e + +SOURCE="telefonicaiot/fiware-cygnus" +DOCKER_TARGET="fiware/cygnus-ngsi" +QUAY_TARGET="quay.io/fiware/cygnus-ngsi" + +# DOCKER_TARGET="fiware/$(basename $(git rev-parse --show-toplevel))" +# QUAY_TARGET="quay.io/fiware/$(basename $(git rev-parse --show-toplevel))" + +VERSION=$(git describe --exclude 'FIWARE*' --tags $(git rev-list --tags --max-count=1)) + +function clone { + echo 'cloning from '"$1 $2"' to '"$3" + docker pull -q "$1":"$2" + docker tag "$1":"$2" "$3":"$2" + + if ! [ -z "$4" ]; then + echo 'pushing '"$1 $2"' to latest' + docker tag "$1":"$2" "$3":latest + docker push -q "$3":latest + fi +} + +for i in "$@" ; do + if [[ $i == "docker" ]]; then + clone "$SOURCE" "$VERSION" "$DOCKER_TARGET" true + fi + if [[ $i == "quay" ]]; then + clone "$SOURCE" "$VERSION" "$QUAY_TARGET" true + fi + echo "" +done \ No newline at end of file From aed2975a9b534def84ad10f8180813c356b4285c Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Thu, 3 Aug 2023 20:01:38 +0200 Subject: [PATCH 2/3] Add push --- .github/fiware/image-clone.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/fiware/image-clone.sh b/.github/fiware/image-clone.sh index e30d49e71..3ff6fdf66 100755 --- a/.github/fiware/image-clone.sh +++ b/.github/fiware/image-clone.sh @@ -13,6 +13,7 @@ function clone { echo 'cloning from '"$1 $2"' to '"$3" docker pull -q "$1":"$2" docker tag "$1":"$2" "$3":"$2" + docker push -q "$3":"$2" if ! [ -z "$4" ]; then echo 'pushing '"$1 $2"' to latest' From c353b3f5405127406a0995785feb4048092b5bef Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Fri, 4 Aug 2023 13:51:21 +0200 Subject: [PATCH 3/3] Add clean --- .github/fiware/image-clone.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/fiware/image-clone.sh b/.github/fiware/image-clone.sh index 3ff6fdf66..93856e81c 100755 --- a/.github/fiware/image-clone.sh +++ b/.github/fiware/image-clone.sh @@ -30,4 +30,10 @@ for i in "$@" ; do clone "$SOURCE" "$VERSION" "$QUAY_TARGET" true fi echo "" +done + +for i in "$@" ; do + if [[ $i == "clean" ]]; then + docker rmi -f $(docker images -a -q) | true + fi done \ No newline at end of file