2017-02-06 17:57:15 +03:00
|
|
|
#!/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
|
2018-08-22 20:14:47 +03:00
|
|
|
for tag in {3,3.2,3.2.2,3-apache,3.2-apache,3.2.2-apache,apache,latest}; do
|
2017-02-06 17:57:15 +03:00
|
|
|
docker tag $IMAGE_NAME ${repoName}:${tag}
|
|
|
|
|
docker push ${repoName}:${tag}
|
|
|
|
|
done
|