initial setting at 20-Aug-2025
This commit is contained in:
17
docker-compose.yml.psql
Normal file
17
docker-compose.yml.psql
Normal file
@ -0,0 +1,17 @@
|
||||
services:
|
||||
postgres-db:
|
||||
image: kartoza/postgis
|
||||
ports:
|
||||
- 5432:5432
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql
|
||||
- ./custom-postgresql.conf:/etc/postgresql/12/main/postgresql.conf
|
||||
- ./rogaining.sql:/sql/rogaining.sql
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASS=${POSTGRES_PASS}
|
||||
- POSTGRES_DBNAME=${POSTGRES_DBNAME}
|
||||
- POSTGRES_MAX_CONNECTIONS=600
|
||||
restart: "on-failure"
|
||||
volumes:
|
||||
postgres_data:
|
||||
Reference in New Issue
Block a user