Skip to content

Commit

Permalink
Merge pull request #293 from tonglil/gcloud-docker
Browse files Browse the repository at this point in the history
Update makefile gcloud docker command
  • Loading branch information
bprashanth committed Feb 17, 2017
2 parents 698c084 + bba7213 commit 3d9f89b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion controllers/gce/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ container: server
docker build --pull -t $(PREFIX):$(TAG) .

push: container
gcloud docker push $(PREFIX):$(TAG)
gcloud docker -- push $(PREFIX):$(TAG)

clean:
rm -f glbc
2 changes: 1 addition & 1 deletion controllers/nginx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ container: build
docker build --pull -t $(PREFIX):$(RELEASE) rootfs

push: container
gcloud docker push $(PREFIX):$(RELEASE)
gcloud docker -- push $(PREFIX):$(RELEASE)

fmt:
@echo "+ $@"
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-controller/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ container: server
docker build --pull -t $(PREFIX)-$(ARCH):$(TAG) .

push: container
gcloud docker push $(PREFIX)-$(ARCH):$(TAG)
gcloud docker -- push $(PREFIX)-$(ARCH):$(TAG)

clean:
rm -f server
Expand Down
2 changes: 1 addition & 1 deletion images/nginx-slim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ container:
docker build --pull -t $(PREFIX):$(TAG) .

push: container
gcloud docker push $(PREFIX):$(TAG)
gcloud docker -- push $(PREFIX):$(TAG)

clean:
docker rmi -f $(PREFIX):$(TAG) || true

0 comments on commit 3d9f89b

Please sign in to comment.