Skip to content

Commit

Permalink
fix: Remove f flag from docker tag as depreciated in Docker 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-linnell committed Dec 6, 2016
1 parent 2d3e09c commit 3130a5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/release.mk
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ release-pull-snapshots:
$(DOCKER) pull $(sandbox_snapshot)

release-tag-snapshots:
$(DOCKER) tag -f $(app_snapshot) $(app_image)
$(DOCKER) tag -f $(assets_snapshot) $(assets_image)
$(DOCKER) tag -f $(sandbox_snapshot) $(sandbox_image)
$(DOCKER) tag $(app_snapshot) $(app_image)
$(DOCKER) tag $(assets_snapshot) $(assets_image)
$(DOCKER) tag $(sandbox_snapshot) $(sandbox_image)

release-tag-create:
ifeq ("$(VERSION)", "dev")
Expand Down

0 comments on commit 3130a5e

Please sign in to comment.