Skip to content

Commit

Permalink
set tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tmurakam committed Mar 13, 2020
1 parent 3f09564 commit 1d5e91f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.api
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM necbaas/tomcat
FROM necbaas/tomcat:latest

# Install BaaS Server
ENV BAAS_VERSION 7.5.3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.both
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM necbaas/tomcat
FROM necbaas/tomcat:latest

# Install BaaS Server
ENV BAAS_VERSION 7.5.3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.console
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM necbaas/tomcat
FROM necbaas/tomcat:latest

# Install BaaS Server
ENV BAAS_VERSION 7.5.3
Expand Down
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ PORT_OPTS = -p 28080:8080

VOLUME_OPTS = -v $(PWD)/logs:/opt/tomcat/logs:rw

NAME_API = necbaas/api-server
NAME_CONSOLE = necbaas/console-server
NAME_BOTH = necbaas/api-console-server
VERSION = 7.5.3

NAME_API = necbaas/api-server:$(VERSION)
NAME_CONSOLE = necbaas/console-server:$(VERSION)
NAME_BOTH = necbaas/api-console-server:$(VERSION)

.PHONY: api console both

Expand Down

0 comments on commit 1d5e91f

Please sign in to comment.