Commit af8817ae authored by Jack Greenfield's avatar Jack Greenfield

Merge pull request #34 from dhoeric/push_to_other_registry

Push docker image to other registry
parents 4944bb50 87fba0e2
# Makefile for the Docker image gcr.io/$(PROJECT)/expandybird # Makefile for the Docker image $(DOCKER_REGISTRY)/$(PROJECT)/expandybird
# MAINTAINER: Jack Greenfield <jackgr@google.com> # MAINTAINER: Jack Greenfield <jackgr@google.com>
# If you update this image please check the tag value before pushing. # If you update this image please check the tag value before pushing.
.PHONY : all build test push container clean .PHONY : all build test push container clean
PREFIX := gcr.io/$(PROJECT) DOCKER_REGISTRY := gcr.io
PREFIX := $(DOCKER_REGISTRY)/$(PROJECT)
IMAGE := expandybird IMAGE := expandybird
TAG := latest TAG := latest
DIR := . DIR := .
push: container push: container
ifeq ($(DOCKER_REGISTRY),gcr.io)
gcloud docker push $(PREFIX)/$(IMAGE):$(TAG) gcloud docker push $(PREFIX)/$(IMAGE):$(TAG)
else
docker push $(PREFIX)/$(IMAGE):$(TAG)
endif
container: expandybird container: expandybird
cp $(shell which expandybird) . cp $(shell which expandybird) .
...@@ -25,4 +30,4 @@ expandybird: ...@@ -25,4 +30,4 @@ expandybird:
clean: clean:
-docker rmi $(PREFIX)/$(IMAGE):$(TAG) -docker rmi $(PREFIX)/$(IMAGE):$(TAG)
rm -f expandybird rm -f expandybird
# Makefile for the Docker image gcr.io/$(PROJECT)/manager # Makefile for the Docker image $(DOCKER_REGISTRY)/$(PROJECT)/manager
# MAINTAINER: Jack Greenfield <jackgr@google.com> # MAINTAINER: Jack Greenfield <jackgr@google.com>
# If you update this image please check the tag value before pushing. # If you update this image please check the tag value before pushing.
.PHONY : all build test push container clean .project .PHONY : all build test push container clean .project
PREFIX := gcr.io/$(PROJECT) DOCKER_REGISTRY := gcr.io
PREFIX := $(DOCKER_REGISTRY)/$(PROJECT)
IMAGE := manager IMAGE := manager
TAG := latest TAG := latest
...@@ -12,11 +13,15 @@ ROOT_DIR := $(abspath ./..) ...@@ -12,11 +13,15 @@ ROOT_DIR := $(abspath ./..)
DIR = $(ROOT_DIR) DIR = $(ROOT_DIR)
push: container push: container
ifeq ($(DOCKER_REGISTRY),gcr.io)
gcloud docker push $(PREFIX)/$(IMAGE):$(TAG) gcloud docker push $(PREFIX)/$(IMAGE):$(TAG)
else
docker push $(PREFIX)/$(IMAGE):$(TAG)
endif
container: container:
docker build -t $(PREFIX)/$(IMAGE):$(TAG) -f Dockerfile $(DIR) docker build -t $(PREFIX)/$(IMAGE):$(TAG) -f Dockerfile $(DIR)
clean: clean:
-docker rmi $(PREFIX)/$(IMAGE):$(TAG) -docker rmi $(PREFIX)/$(IMAGE):$(TAG)
\ No newline at end of file
# Makefile for the Docker image gcr.io/$(PROJECT)/resourcifier # Makefile for the Docker image $(DOCKER_REGISTRY)/$(PROJECT)/resourcifier
# MAINTAINER: Jack Greenfield <jackgr@google.com> # MAINTAINER: Jack Greenfield <jackgr@google.com>
# If you update this image please check the tag value before pushing. # If you update this image please check the tag value before pushing.
.PHONY : all build test push container clean .PHONY : all build test push container clean
PREFIX := gcr.io/$(PROJECT) DOCKER_REGISTRY := gcr.io
PREFIX := $(DOCKER_REGISTRY)/$(PROJECT)
IMAGE := resourcifier IMAGE := resourcifier
TAG := latest TAG := latest
...@@ -12,7 +13,11 @@ ROOT_DIR := $(abspath ./..) ...@@ -12,7 +13,11 @@ ROOT_DIR := $(abspath ./..)
DIR = $(ROOT_DIR) DIR = $(ROOT_DIR)
push: container push: container
ifeq ($(DOCKER_REGISTRY),gcr.io)
gcloud docker push $(PREFIX)/$(IMAGE):$(TAG) gcloud docker push $(PREFIX)/$(IMAGE):$(TAG)
else
docker push $(PREFIX)/$(IMAGE):$(TAG)
endif
container: container:
docker build -t $(PREFIX)/$(IMAGE):$(TAG) -f Dockerfile $(DIR) docker build -t $(PREFIX)/$(IMAGE):$(TAG) -f Dockerfile $(DIR)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment