Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
af8817ae
Commit
af8817ae
authored
Nov 12, 2015
by
Jack Greenfield
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #34 from dhoeric/push_to_other_registry
Push docker image to other registry
parents
4944bb50
87fba0e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
10 deletions
+24
-10
Makefile
expandybird/Makefile
+8
-3
Makefile
manager/Makefile
+9
-5
Makefile
resourcifier/Makefile
+7
-2
No files found.
expandybird/Makefile
View file @
af8817ae
# 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
manager/Makefile
View file @
af8817ae
# 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
resourcifier/Makefile
View file @
af8817ae
# 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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment