post_push multi tags test

This commit is contained in:
selim13
2016-09-13 18:37:25 +03:00
parent c3614d7a3a
commit 23c9f0464f

13
3.1-apache/hooks/post_push Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
set -e
# Parse image name for repo name
tagStart=$(expr index "$IMAGE_NAME" :)
repoName=${IMAGE_NAME:0:tagStart-1}
# Tag and push image for each additional tag
for tag in {3,3.1,3-apache,3.1-apache,apache,latest}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done