-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #356 from groldan/feature/pgsql-catalog-backend
New Catalog/Config backend for PostgreSQL 15+
- Loading branch information
Showing
105 changed files
with
6,777 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Build on any branch | |
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '**' | ||
- "!main" | ||
paths: | ||
- "Makefile" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
version: "3.8" | ||
|
||
volumes: | ||
pgconfig_data: # volume for postgresql data, used to store the geoserver config through pgsqlconfig backend | ||
|
||
# | ||
# Configures all geoserver services to use the postgresql database server with jdbcconfig as catalog backend. | ||
# Run with `docker-compose --compatibility -f docker-compose.yml -f docker-compose-jdbcconfig.yml up -d` | ||
# | ||
|
||
services: | ||
pgconfig: | ||
image: postgres:15 | ||
shm_size: 2g | ||
environment: | ||
POSTGRES_DB: pgconfig | ||
POSTGRES_USER: pgconfig | ||
POSTGRES_PASSWORD: pgconfig | ||
ports: | ||
- 54322:5432 | ||
networks: | ||
- gs-cloud-network | ||
volumes: | ||
- pgconfig_data:/var/lib/postgresql/data | ||
deploy: | ||
resources: | ||
limits: | ||
cpus: '4.0' | ||
memory: 4G | ||
|
||
|
||
wfs: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig | ||
|
||
wms: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig | ||
|
||
wcs: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig | ||
|
||
rest: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig | ||
|
||
webui: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig | ||
|
||
gwc: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig | ||
|
||
wps: | ||
environment: | ||
SPRING_PROFILES_ACTIVE: "${DEFAULT_PROFILES},pgconfig" | ||
depends_on: | ||
- pgconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.