Merge pull request #293 from tonglil/gcloud-docker

Update makefile gcloud docker command
This commit is contained in:
Prashanth B 2017-02-17 07:07:25 +05:30 committed by GitHub
commit 3d9f89be1d
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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 "+ $@"

View file

@ -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

View file

@ -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