Skip to content

Commit

Permalink
Update stable deployment configs to use v1.0-RC7
Browse files Browse the repository at this point in the history
  • Loading branch information
groldan committed Jan 7, 2022
1 parent 467d24d commit 882e4e9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Follow the [developer's guide](docs/develop/index.md) to know more about the pro

## Status

`v1.0-RC6` released against GeoServer `2.21-SNAPSHOT`.
`v1.0-RC7` released against GeoServer `2.21-SNAPSHOT`.

Read the [changelog](CHANGELOG.md) for more information.

Expand Down
22 changes: 11 additions & 11 deletions docs/deploy/docker-compose/stable/jdbcconfig/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,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: geoservercloud/geoserver-cloud-discovery:1.0-RC6
image: geoservercloud/geoserver-cloud-discovery:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
ports:
- 8761:8761
Expand All @@ -61,7 +61,7 @@ services:
# microservices. Being a Discovery First Bootstrap configuration, it'll
# register itself with the Eureka discovery service and can be scaled
config:
image: geoservercloud/geoserver-cloud-config:1.0-RC6
image: geoservercloud/geoserver-cloud-config:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- discovery
Expand All @@ -74,8 +74,8 @@ services:
SPRING_PROFILES_ACTIVE: git
# 'git' profile config
CONFIG_GIT_URI: https://github.com/geoserver/geoserver-cloud-config.git
# get the config for this release from the v1.0-RC6 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC6
# get the config for this release from the v1.0-RC7 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC7
# where to store the cloned repository, if unset, it'll use /tmp/config-repo-<randomid>
CONFIG_GIT_BASEDIR: /tmp/git_config
# 'native' profile config
Expand All @@ -94,7 +94,7 @@ services:
memory: 512M

admin:
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC6
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -111,7 +111,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: geoservercloud/geoserver-cloud-gateway:1.0-RC6
image: geoservercloud/geoserver-cloud-gateway:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -129,7 +129,7 @@ services:

# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
wfs:
image: geoservercloud/geoserver-cloud-wfs:1.0-RC6
image: geoservercloud/geoserver-cloud-wfs:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -145,7 +145,7 @@ services:

# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
wms:
image: geoservercloud/geoserver-cloud-wms:1.0-RC6
image: geoservercloud/geoserver-cloud-wms:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -161,7 +161,7 @@ services:

# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
wcs:
image: geoservercloud/geoserver-cloud-wcs:1.0-RC6
image: geoservercloud/geoserver-cloud-wcs:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -177,7 +177,7 @@ services:

# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
rest:
image: geoservercloud/geoserver-cloud-rest:1.0-RC6
image: geoservercloud/geoserver-cloud-rest:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -195,7 +195,7 @@ services:

# WEB UI microservice
webui:
image: geoservercloud/geoserver-cloud-webui:1.0-RC6
image: geoservercloud/geoserver-cloud-webui:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- rabbitmq
Expand Down
22 changes: 11 additions & 11 deletions docs/deploy/docker-compose/stable/shared_datadir/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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: geoservercloud/geoserver-cloud-discovery:1.0-RC6
image: geoservercloud/geoserver-cloud-discovery:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
ports:
- 8761:8761
Expand All @@ -52,7 +52,7 @@ services:
# microservices. Being a Discovery First Bootstrap configuration, it'll
# register itself with the Eureka discovery service and can be scaled
config:
image: geoservercloud/geoserver-cloud-config:1.0-RC6
image: geoservercloud/geoserver-cloud-config:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- discovery
Expand All @@ -64,8 +64,8 @@ services:
SPRING_PROFILES_ACTIVE: git
# 'git' profile config
CONFIG_GIT_URI: https://github.com/geoserver/geoserver-cloud-config.git
# get the config for this release from the v1.0-RC6 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC6
# get the config for this release from the v1.0-RC7 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC7
# where to store the cloned repository, if unset, it'll use /tmp/config-repo-<randomid>
CONFIG_GIT_BASEDIR: /tmp/git_config
# 'native' profile config
Expand All @@ -84,7 +84,7 @@ services:
memory: 512M

admin:
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC6
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -101,7 +101,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: geoservercloud/geoserver-cloud-gateway:1.0-RC6
image: geoservercloud/geoserver-cloud-gateway:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -119,7 +119,7 @@ services:

# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
wfs:
image: geoservercloud/geoserver-cloud-wfs:1.0-RC6
image: geoservercloud/geoserver-cloud-wfs:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -138,7 +138,7 @@ services:

# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
wms:
image: geoservercloud/geoserver-cloud-wms:1.0-RC6
image: geoservercloud/geoserver-cloud-wms:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -157,7 +157,7 @@ services:

# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
wcs:
image: geoservercloud/geoserver-cloud-wcs:1.0-RC6
image: geoservercloud/geoserver-cloud-wcs:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -176,7 +176,7 @@ services:

# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
rest:
image: geoservercloud/geoserver-cloud-rest:1.0-RC6
image: geoservercloud/geoserver-cloud-rest:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -197,7 +197,7 @@ services:

# WEB UI microservice
webui:
image: geoservercloud/geoserver-cloud-webui:1.0-RC6
image: geoservercloud/geoserver-cloud-webui:1.0-RC7
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ The following diagram depicts the System's general architecture:
# Project Status

Version `1.0-RC6` has been released against a slightly customized GeoServer `2.21-SNAPSHOT`
Version `1.0-RC7` has been released against a slightly customized GeoServer `2.21-SNAPSHOT`
with some important fixes to allow starting up several GeoServer instances from an empty
directory or database. We will make sure to contribute those fixes upstream before the final
release.
Expand Down

0 comments on commit 882e4e9

Please sign in to comment.