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) . docker build --pull -t $(PREFIX):$(TAG) .
push: container push: container
gcloud docker push $(PREFIX):$(TAG) gcloud docker -- push $(PREFIX):$(TAG)
clean: clean:
rm -f glbc rm -f glbc

View file

@ -24,7 +24,7 @@ container: build
docker build --pull -t $(PREFIX):$(RELEASE) rootfs docker build --pull -t $(PREFIX):$(RELEASE) rootfs
push: container push: container
gcloud docker push $(PREFIX):$(RELEASE) gcloud docker -- push $(PREFIX):$(RELEASE)
fmt: fmt:
@echo "+ $@" @echo "+ $@"

View file

@ -32,7 +32,7 @@ container: server
docker build --pull -t $(PREFIX)-$(ARCH):$(TAG) . docker build --pull -t $(PREFIX)-$(ARCH):$(TAG) .
push: container push: container
gcloud docker push $(PREFIX)-$(ARCH):$(TAG) gcloud docker -- push $(PREFIX)-$(ARCH):$(TAG)
clean: clean:
rm -f server rm -f server

View file

@ -8,7 +8,7 @@ container:
docker build --pull -t $(PREFIX):$(TAG) . docker build --pull -t $(PREFIX):$(TAG) .
push: container push: container
gcloud docker push $(PREFIX):$(TAG) gcloud docker -- push $(PREFIX):$(TAG)
clean: clean:
docker rmi -f $(PREFIX):$(TAG) || true docker rmi -f $(PREFIX):$(TAG) || true