Adds a 30 second delay before refreshing DC/OS, in case Docker Hub takes a bit to update its cache
This commit is contained in:
parent
796c109611
commit
14c82f4044
|
@ -5,5 +5,10 @@ echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
|||
docker build --no-cache -t sartography/cr-connect-backend:latest . || exit 1;
|
||||
docker push sartography/cr-connect-backend:latest || exit 1;
|
||||
|
||||
# Wait for Docker Hub
|
||||
echo "Publishing to Docker Hub..."
|
||||
sleep 30
|
||||
|
||||
# Notify UVA DCOS that Docker image has been updated
|
||||
echo "Refreshing DC/OS..."
|
||||
aws sqs send-message --queue-url 'https://queue.amazonaws.com/474683445819/dcos-refresh' --message-body 'crconnect/backend' || exit 1;
|
||||
|
|
Loading…
Reference in New Issue