Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
chore(build): push correct latest image
Browse files Browse the repository at this point in the history
  • Loading branch information
philwinder committed Jan 27, 2017
1 parent f3e9789 commit 529b275
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,16 @@ deployment:
echo Pushing $IMAGE_TAG
docker tag weaveworks/fluxd "$IMAGE_TAG"
docker push "$IMAGE_TAG"
docker push weaveworks/fluxd:latest
IMAGE_TAG="quay.io/weaveworks/fluxd:latest"
echo Pushing $IMAGE_TAG
docker tag weaveworks/fluxd "$IMAGE_TAG"
docker push "$IMAGE_TAG"
# Assumes that both images change in lock-step (they share a lot of code, so ..)
IMAGE_TAG="quay.io/weaveworks/fluxsvc:$(./docker/image-tag)"
echo Pushing $IMAGE_TAG
docker tag weaveworks/fluxsvc "$IMAGE_TAG"
docker push "$IMAGE_TAG"
docker push weaveworks/fluxsvc:latest
IMAGE_TAG="quay.io/weaveworks/fluxsvc:latest"
echo Pushing $IMAGE_TAG
docker tag weaveworks/fluxsvc "$IMAGE_TAG"
docker push "$IMAGE_TAG"

0 comments on commit 529b275

Please sign in to comment.