mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
new docker publish script
This commit is contained in:
Executable
+51
@@ -0,0 +1,51 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
show_help() {
|
||||
echo "Usage: docker_publish.sh"
|
||||
echo ""
|
||||
echo "-u or --username username docker repo"
|
||||
echo "-p or --passwor password docker repo"
|
||||
echo "-t or --tags tags comma separated"
|
||||
}
|
||||
|
||||
username_set() {
|
||||
USERNAME=$1
|
||||
}
|
||||
|
||||
password_set() {
|
||||
PASSWORD=$1
|
||||
}
|
||||
|
||||
|
||||
tags_set() {
|
||||
TAGS=$1
|
||||
}
|
||||
|
||||
while [[ $1 == -* ]]; do
|
||||
case "$1" in
|
||||
-h|--help|-\?) show_help; exit 0;;
|
||||
-u|--username) username_set $2; shift 2;;
|
||||
-p|--password) password_set $2; shift 2;;
|
||||
-t|--tags) tags_set $2; shift 2;;
|
||||
-*) echo "invalid option: $1" 1>&2; show_help; exit 1;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Tag and push image for each additional tag
|
||||
for current_tag in $(echo $TAGS | sed "s/,/ /g")
|
||||
do
|
||||
|
||||
echo "====== PUBLISH DOCKER IMAGE TAG ${current_tag} ====="
|
||||
|
||||
docker build -t alfresco/demo-shell:${current_tag} .
|
||||
docker tag alfresco/demo-shell:${current_tag} alfresco/demo-shell:${current_tag}
|
||||
|
||||
echo "====== LOGIN ====="
|
||||
docker login -u "${USERNAME}" -p "${PASSWORD}"
|
||||
docker push "alfresco/demo-shell"
|
||||
|
||||
echo "====== CLEAN LOCAL IMAGE TAG ${current_tag} ====="
|
||||
docker rmi -f alfresco/demo-shell:${current_tag}
|
||||
done
|
||||
Reference in New Issue
Block a user