From aec49d8bda1d1137b6c970c364002b29ad6b62f2 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Wed, 25 Jul 2018 22:25:10 -0700 Subject: [PATCH] Use rolling releases. --- .travis/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis/deploy.sh b/.travis/deploy.sh index 3f00e76..5896152 100644 --- a/.travis/deploy.sh +++ b/.travis/deploy.sh @@ -9,9 +9,9 @@ deploy() { TAG="$2" PASSWORD="$3" # Tag the containers correctly. - docker tag maxking/mailman-core "$URL/maxking/mailman-core:$TAG" - docker tag maxking/mailman-web "$URL/maxking/mailman-web:$TAG" - docker tag maxking/postorius "$URL/maxking/postorius:$TAG" + docker tag maxking/mailman-core:rolling "$URL/maxking/mailman-core:$TAG" + docker tag maxking/mailman-web:rolling "$URL/maxking/mailman-web:$TAG" + docker tag maxking/postorius:rolling "$URL/maxking/postorius:$TAG" # Login to the registry and push. docker login -u $USER -p $PASSWORD $URL docker push "$URL/maxking/mailman-web:$TAG"