Skip to content

Commit

Permalink
Merge pull request #2 from delta10/ci/add-postgres
Browse files Browse the repository at this point in the history
ci: add postgres, switch Dex default port
  • Loading branch information
bartjkdp authored Nov 29, 2023
2 parents 067bf3f + fca2b35 commit c115c68
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,24 @@ services:
- EXTRA_JAVA_OPTS=-Xms1G -Xmx2G
volumes:
- geoserver-data:/opt/geoserver_data
postgres:
image: postgres:15.3
environment:
- POSTGRES_USER=geo
- POSTGRES_PASSWORD=geo
- POSTGRES_DB=geo
volumes:
- postgres-data:/var/lib/postgresql/data
ports:
- 5433:5432
dex:
image: ghcr.io/delta10/dex:v2.37.0-delta10.2
image: ghcr.io/delta10/dex:2.37.0
command: dex serve /config.yaml
volumes:
- ./dex.dev.yml:/config.yaml
ports:
- 6556:6556
- 6557:6556

volumes:
geoserver-data:
postgres-data:

0 comments on commit c115c68

Please sign in to comment.