Skip to content

Commit

Permalink
Merge pull request kubernetes#258 from dims/fix-oops-in-docker-push-p…
Browse files Browse the repository at this point in the history
…arameter

oops! fix the image name when we run docker push
  • Loading branch information
k8s-ci-robot authored Aug 2, 2018
2 parents fed0c13 + 594d5df commit cfbc441
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guestbook/php-redis/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ endif

push: .push-$(ARCH)
.push-$(ARCH): .container-$(ARCH)
docker push $(IMAGE):$(TAG)
docker push $(MULTI_ARCH_IMG):$(TAG)

clean: $(addprefix sub-clean-,$(ALL_ARCH))
docker rmi -f $(IMAGE):$(TAG) || true
Expand Down
2 changes: 1 addition & 1 deletion guestbook/redis-slave/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ endif

push: .push-$(ARCH)
.push-$(ARCH): .container-$(ARCH)
docker push $(IMAGE):$(TAG)
docker push $(MULTI_ARCH_IMG):$(TAG)

clean: $(addprefix sub-clean-,$(ALL_ARCH))
docker rmi -f $(IMAGE):$(TAG) || true
Expand Down

0 comments on commit cfbc441

Please sign in to comment.