Skip to content

Commit

Permalink
Change docker image prefix to cloudnativegeoserver
Browse files Browse the repository at this point in the history
Set up a docker hub organization called cloudnativegeoserver
and pushed the 0.2.0 images there.

https://hub.docker.com/u/cloudnativegeoserver
  • Loading branch information
groldan committed Feb 15, 2021
1 parent cd07617 commit aab9eb0
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions docker-compose-discovery-ha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
EUREKA_CLIENT_SERVICEURL_DEFAULTZONE: http://discovery-2:8761/eureka

discovery2:
image: org.geoserver.cloud/gs-cloud-discovery-service:${TAG}
image: cloudnativegeoserver/gs-cloud-discovery-service:${TAG}
container_name: discovery-2
environment:
SERVER_PORT: 8761
Expand All @@ -26,7 +26,7 @@ services:
- gs-cloud-network

config:
image: org.geoserver.cloud/gs-cloud-config-service:${TAG}
image: cloudnativegeoserver/gs-cloud-config-service:${TAG}
depends_on:
- discovery
- discovery2
Expand Down
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- "15672:15672"

database:
image: org.geoserver.cloud/gs-cloud-database:${TAG}
image: cloudnativegeoserver/gs-cloud-database:${TAG}
environment:
POSTGRES_DB: "${JDBCCONFIG_DBNAME}"
POSTGRES_USER: "${JDBCCONFIG_USERNAME}"
Expand All @@ -41,7 +41,7 @@ services:
# Browse to http://localhost:8761 to check all services are registered.
# Run docker-compose -f docker-compose.yml -f docker-compose-discovery-ha.yml to run extra discovery service instances for HA
discovery:
image: org.geoserver.cloud/gs-cloud-discovery-service:${TAG}
image: cloudnativegeoserver/gs-cloud-discovery-service:${TAG}
environment:
SERVER_PORT: 8761
EUREKA_INSTANCE_HOSTNAME: discovery
Expand All @@ -60,7 +60,7 @@ services:
# microservices. Being a Discovery First Bootstrap configuration, it'll
# register itself with the Eureka discovery service and can be scaled
config:
image: org.geoserver.cloud/gs-cloud-config-service:${TAG}
image: cloudnativegeoserver/gs-cloud-config-service:${TAG}
depends_on:
- discovery
environment:
Expand All @@ -83,7 +83,7 @@ services:
# Application facade, provides a single entry point routing to all
# microservices (e.g. http://localhost:9090/geoserver/wms, http://localhost:9090/geoserver/wfs, etc)
gateway:
image: org.geoserver.cloud/gs-cloud-gateway:${TAG}
image: cloudnativegeoserver/gs-cloud-gateway:${TAG}
depends_on:
- discovery
- config
Expand All @@ -101,7 +101,7 @@ services:

# catalog microservice, provides a unified catalog backend to all services
catalog:
image: org.geoserver.cloud/gs-cloud-catalog:${TAG}
image: cloudnativegeoserver/gs-cloud-catalog:${TAG}
depends_on:
- discovery
- config
Expand All @@ -125,7 +125,7 @@ services:

# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
wfs:
image: org.geoserver.cloud/gs-cloud-wfs:${TAG}
image: cloudnativegeoserver/gs-cloud-wfs:${TAG}
depends_on:
- rabbitmq
- catalog
Expand All @@ -146,7 +146,7 @@ services:

# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
wms:
image: org.geoserver.cloud/gs-cloud-wms:${TAG}
image: cloudnativegeoserver/gs-cloud-wms:${TAG}
depends_on:
- rabbitmq
- catalog
Expand All @@ -166,7 +166,7 @@ services:

# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
wcs:
image: org.geoserver.cloud/gs-cloud-wcs:${TAG}
image: cloudnativegeoserver/gs-cloud-wcs:${TAG}
depends_on:
- rabbitmq
- catalog
Expand All @@ -186,7 +186,7 @@ services:

# # WPS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wps=5)
# wps:
# image: org.geoserver.cloud/gs-cloud-wps:${TAG}
# image: cloudnativegeoserver/gs-cloud-wps:${TAG}
# depends_on:
# - rabbitmq
# - catalog
Expand All @@ -206,7 +206,7 @@ services:

# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
rest:
image: org.geoserver.cloud/gs-cloud-restconfig-v1:${TAG}
image: cloudnativegeoserver/gs-cloud-restconfig-v1:${TAG}
depends_on:
- rabbitmq
- catalog
Expand All @@ -226,7 +226,7 @@ services:

# WEB UI microservice
webui:
image: org.geoserver.cloud/gs-cloud-web-ui:${TAG}
image: cloudnativegeoserver/gs-cloud-web-ui:${TAG}
depends_on:
- rabbitmq
- catalog
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<fork.javac>true</fork.javac>
<javac.maxHeapSize>256M</javac.maxHeapSize>

<docker.image.prefix>${project.groupId}</docker.image.prefix>
<docker.image.prefix>cloudnativegeoserver</docker.image.prefix>
<dockerfile.build.pullNewerImage>false</dockerfile.build.pullNewerImage>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion services/catalog/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/catalog-service.jar
Expand Down
2 changes: 1 addition & 1 deletion services/restconfig/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/restconfig-service.jar
Expand Down
2 changes: 1 addition & 1 deletion services/wcs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/wcs-service.jar
Expand Down
2 changes: 1 addition & 1 deletion services/web-ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/web-ui-service.jar
Expand Down
2 changes: 1 addition & 1 deletion services/wfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/wfs-service.jar
Expand Down
2 changes: 1 addition & 1 deletion services/wms/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/wms-service.jar
Expand Down
2 changes: 1 addition & 1 deletion services/wps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy
ADD target/${JAR_FILE} /opt/app/wps-service.jar
Expand Down
2 changes: 1 addition & 1 deletion support-services/api-gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy

Expand Down
2 changes: 1 addition & 1 deletion support-services/config/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy

Expand Down
2 changes: 1 addition & 1 deletion support-services/discovery/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TAG
FROM org.geoserver.cloud/gs-cloud-docker-base-java:${TAG}
FROM cloudnativegeoserver/gs-cloud-docker-base-java:${TAG}

ARG JAR_FILE=dummy

Expand Down

0 comments on commit aab9eb0

Please sign in to comment.