Skip to content

Commit 1f18525

Browse files
committed
Update docs to point to 1.0-RC15
1 parent f7c5cca commit 1f18525

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Follow the [developer's guide](docs/develop/index.md) to know more about the pro
170170

171171
## Status
172172

173-
`v1.0-RC14` released against GeoServer `2.21-SNAPSHOT`.
173+
`v1.0-RC15` released against GeoServer `2.21-SNAPSHOT`.
174174

175175
Read the [changelog](https://github.com/geoserver/geoserver-cloud/releases/tag/v1.0-RC14) for more information.
176176

docs/deploy/docker-compose/stable/jdbcconfig/docker-compose.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ services:
4545
# Browse to http://localhost:8761 to check all services are registered.
4646
# Run docker-compose -f docker-compose.yml -f docker-compose-discovery-ha.yml to run extra discovery service instances for HA
4747
discovery:
48-
image: geoservercloud/geoserver-cloud-discovery:1.0-RC14
48+
image: geoservercloud/geoserver-cloud-discovery:1.0-RC15
4949
user: 1000:1000 # set the userid:groupid the container runs as
5050
ports:
5151
- 8761:8761
@@ -62,7 +62,7 @@ services:
6262
# microservices. Being a Discovery First Bootstrap configuration, it'll
6363
# register itself with the Eureka discovery service and can be scaled
6464
config:
65-
image: geoservercloud/geoserver-cloud-config:1.0-RC14
65+
image: geoservercloud/geoserver-cloud-config:1.0-RC15
6666
user: 1000:1000 # set the userid:groupid the container runs as
6767
depends_on:
6868
- discovery
@@ -75,8 +75,8 @@ services:
7575
SPRING_PROFILES_ACTIVE: git
7676
# 'git' profile config
7777
CONFIG_GIT_URI: https://github.com/geoserver/geoserver-cloud-config.git
78-
# get the config for this release from the v1.0-RC14 tag
79-
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC14
78+
# get the config for this release from the v1.0-RC15 tag
79+
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC15
8080
# where to store the cloned repository, if unset, it'll use /tmp/config-repo-<randomid>
8181
CONFIG_GIT_BASEDIR: /tmp/git_config
8282
# 'native' profile config
@@ -95,7 +95,7 @@ services:
9595
memory: 512M
9696

9797
admin:
98-
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC14
98+
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC15
9999
user: 1000:1000 # set the userid:groupid the container runs as
100100
depends_on:
101101
- config
@@ -112,7 +112,7 @@ services:
112112
# Application facade, provides a single entry point routing to all
113113
# microservices (e.g. http://localhost:9090/geoserver/wms, http://localhost:9090/geoserver/wfs, etc)
114114
gateway:
115-
image: geoservercloud/geoserver-cloud-gateway:1.0-RC14
115+
image: geoservercloud/geoserver-cloud-gateway:1.0-RC15
116116
user: 1000:1000 # set the userid:groupid the container runs as
117117
depends_on:
118118
- config
@@ -130,7 +130,7 @@ services:
130130

131131
# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
132132
wfs:
133-
image: geoservercloud/geoserver-cloud-wfs:1.0-RC14
133+
image: geoservercloud/geoserver-cloud-wfs:1.0-RC15
134134
user: 1000:1000 # set the userid:groupid the container runs as
135135
depends_on:
136136
- config
@@ -146,7 +146,7 @@ services:
146146

147147
# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
148148
wms:
149-
image: geoservercloud/geoserver-cloud-wms:1.0-RC14
149+
image: geoservercloud/geoserver-cloud-wms:1.0-RC15
150150
user: 1000:1000 # set the userid:groupid the container runs as
151151
depends_on:
152152
- config
@@ -162,7 +162,7 @@ services:
162162

163163
# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
164164
wcs:
165-
image: geoservercloud/geoserver-cloud-wcs:1.0-RC14
165+
image: geoservercloud/geoserver-cloud-wcs:1.0-RC15
166166
user: 1000:1000 # set the userid:groupid the container runs as
167167
depends_on:
168168
- config
@@ -178,7 +178,7 @@ services:
178178

179179
# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
180180
rest:
181-
image: geoservercloud/geoserver-cloud-rest:1.0-RC14
181+
image: geoservercloud/geoserver-cloud-rest:1.0-RC15
182182
user: 1000:1000 # set the userid:groupid the container runs as
183183
depends_on:
184184
- config
@@ -196,7 +196,7 @@ services:
196196

197197
# WEB UI microservice
198198
webui:
199-
image: geoservercloud/geoserver-cloud-webui:1.0-RC14
199+
image: geoservercloud/geoserver-cloud-webui:1.0-RC15
200200
user: 1000:1000 # set the userid:groupid the container runs as
201201
depends_on:
202202
- rabbitmq
@@ -211,7 +211,7 @@ services:
211211
cpus: '2.0'
212212
memory: 1G
213213
gwc:
214-
image: geoservercloud/geoserver-cloud-gwc:1.0-RC14
214+
image: geoservercloud/geoserver-cloud-gwc:1.0-RC15
215215
user: 1000:1000 # set the userid:groupid the container runs as
216216
depends_on:
217217
- config

docs/deploy/docker-compose/stable/shared_datadir/docker-compose.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
# Browse to http://localhost:8761 to check all services are registered.
3737
# Run docker-compose -f docker-compose.yml -f docker-compose-discovery-ha.yml to run extra discovery service instances for HA
3838
discovery:
39-
image: geoservercloud/geoserver-cloud-discovery:1.0-RC14
39+
image: geoservercloud/geoserver-cloud-discovery:1.0-RC15
4040
user: 1000:1000 # set the userid:groupid the container runs as
4141
ports:
4242
- 8761:8761
@@ -53,7 +53,7 @@ services:
5353
# microservices. Being a Discovery First Bootstrap configuration, it'll
5454
# register itself with the Eureka discovery service and can be scaled
5555
config:
56-
image: geoservercloud/geoserver-cloud-config:1.0-RC14
56+
image: geoservercloud/geoserver-cloud-config:1.0-RC15
5757
user: 1000:1000 # set the userid:groupid the container runs as
5858
depends_on:
5959
- discovery
@@ -65,8 +65,8 @@ services:
6565
SPRING_PROFILES_ACTIVE: git
6666
# 'git' profile config
6767
CONFIG_GIT_URI: https://github.com/geoserver/geoserver-cloud-config.git
68-
# get the config for this release from the v1.0-RC14 tag
69-
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC14
68+
# get the config for this release from the v1.0-RC15 tag
69+
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC15
7070
# where to store the cloned repository, if unset, it'll use /tmp/config-repo-<randomid>
7171
CONFIG_GIT_BASEDIR: /tmp/git_config
7272
# 'native' profile config
@@ -85,7 +85,7 @@ services:
8585
memory: 512M
8686

8787
admin:
88-
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC14
88+
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC15
8989
user: 1000:1000 # set the userid:groupid the container runs as
9090
depends_on:
9191
- config
@@ -102,7 +102,7 @@ services:
102102
# Application facade, provides a single entry point routing to all
103103
# microservices (e.g. http://localhost:9090/geoserver/wms, http://localhost:9090/geoserver/wfs, etc)
104104
gateway:
105-
image: geoservercloud/geoserver-cloud-gateway:1.0-RC14
105+
image: geoservercloud/geoserver-cloud-gateway:1.0-RC15
106106
user: 1000:1000 # set the userid:groupid the container runs as
107107
depends_on:
108108
- config
@@ -120,7 +120,7 @@ services:
120120

121121
# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
122122
wfs:
123-
image: geoservercloud/geoserver-cloud-wfs:1.0-RC14
123+
image: geoservercloud/geoserver-cloud-wfs:1.0-RC15
124124
user: 1000:1000 # set the userid:groupid the container runs as
125125
depends_on:
126126
- config
@@ -139,7 +139,7 @@ services:
139139

140140
# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
141141
wms:
142-
image: geoservercloud/geoserver-cloud-wms:1.0-RC14
142+
image: geoservercloud/geoserver-cloud-wms:1.0-RC15
143143
user: 1000:1000 # set the userid:groupid the container runs as
144144
depends_on:
145145
- config
@@ -158,7 +158,7 @@ services:
158158

159159
# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
160160
wcs:
161-
image: geoservercloud/geoserver-cloud-wcs:1.0-RC14
161+
image: geoservercloud/geoserver-cloud-wcs:1.0-RC15
162162
user: 1000:1000 # set the userid:groupid the container runs as
163163
depends_on:
164164
- config
@@ -177,7 +177,7 @@ services:
177177

178178
# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
179179
rest:
180-
image: geoservercloud/geoserver-cloud-rest:1.0-RC14
180+
image: geoservercloud/geoserver-cloud-rest:1.0-RC15
181181
user: 1000:1000 # set the userid:groupid the container runs as
182182
depends_on:
183183
- config
@@ -198,7 +198,7 @@ services:
198198

199199
# WEB UI microservice
200200
webui:
201-
image: geoservercloud/geoserver-cloud-webui:1.0-RC14
201+
image: geoservercloud/geoserver-cloud-webui:1.0-RC15
202202
user: 1000:1000 # set the userid:groupid the container runs as
203203
depends_on:
204204
- config
@@ -217,7 +217,7 @@ services:
217217
cpus: '2.0'
218218
memory: 1G
219219
gwc:
220-
image: geoservercloud/geoserver-cloud-gwc:1.0-RC14
220+
image: geoservercloud/geoserver-cloud-gwc:1.0-RC15
221221
user: 1000:1000 # set the userid:groupid the container runs as
222222
depends_on:
223223
- config
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
GSCLOUD_VERSION=1.0-RC14
1+
GSCLOUD_VERSION=1.0-RC15
22

docs/deploy/podman/traditional/manual/podman.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In order to speed up the "starting" part of the documentation we are going to do
2828

2929
```bash
3030
podman pull docker.io/library/rabbitmq:3.9-management
31-
export GSCLOUD_VERSION=1.0-RC14
31+
export GSCLOUD_VERSION=1.0-RC15
3232

3333
for service in discovery config gateway admin-server rest webui wms wfs wcs
3434
do
@@ -71,7 +71,7 @@ podman run -d --name=config --hostname=config \
7171
--network gs-cloud-network \
7272
-e SPRING_PROFILES_ACTIVE=git \
7373
-e CONFIG_GIT_URI=https://github.com/geoserver/geoserver-cloud-config.git \
74-
-e SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL=v1.0-RC14 \
74+
-e SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL=v1.0-RC15 \
7575
-e CONFIG_GIT_BASEDIR=/opt/app/git_config \
7676
geoservercloud/geoserver-cloud-config:$GSCLOUD_VERSION
7777
```

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ The following diagram depicts the System's general architecture:
178178
179179
# Project Status
180180

181-
Version `1.0-RC14` has been released against a slightly customized GeoServer `2.21-SNAPSHOT`
181+
Version `1.0-RC15` has been released against a slightly customized GeoServer `2.21-SNAPSHOT`
182182
with some important fixes to allow starting up several GeoServer instances from an empty
183183
directory or database. We will make sure to contribute those fixes upstream before the final
184184
release.

0 commit comments

Comments
 (0)