Changes the build script's messages to be more precise

This commit is contained in:
Christian Mäder 2017-06-09 13:05:02 +02:00
parent 57c848978c
commit fe82d10aeb
No known key found for this signature in database
GPG Key ID: 92FFD0A711F196BB
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ docker build -f Dockerfile -t "${DOCKER_REPO}/netbox:${TAG}" --build-arg "BRANCH
echo "✅ Finished building the Docker images '${DOCKER_REPO}/netbox:${TAG}'"
if [ "${2}" == "--push" ] ; then
echo "⏫ Pushing 'netbox:${BRANCH}"
echo "⏫ Pushing '${DOCKER_REPO}/netbox:${BRANCH}"
docker push "${DOCKER_REPO}/netbox:${TAG}"
echo "✅ Finished pushing the Docker images."
echo "✅ Finished pushing the Docker image '${DOCKER_REPO}/netbox:${TAG}'."
fi