Add more logs to the docker deployment script

pull/38/head
Clement Michaud 2017-06-01 22:35:37 +02:00
parent 361e36c566
commit bf266648e1
1 changed files with 5 additions and 1 deletions

View File

@ -1,8 +1,12 @@
#!/bin/bash
if [ "$TRAVIS_BRANCH" == "master" ]; then
TAG=latest
echo "======================================="
echo "Authelia will be deployed on Dockerhub."
echo "======================================="
echo "TRAVIS_TAG='$TRAVIS_TAG'"
TAG=latest
if [ ! -z "$TRAVIS_TAG" ]; then
TAG=$TRAVIS_TAG
fi