1 2 3 4 5 6 7 8
#!/bin/bash set -e docker tag "${IMAGE_NAME}" "${DOCKER_REPO}:stable" docker push "${DOCKER_REPO}:stable" exit $?