19 lines
476 B
YAML
19 lines
476 B
YAML
services:
|
|
postgis:
|
|
container_name: postgis
|
|
environment:
|
|
- POSTGRES_DB="${POSTGIS_DATABASE:?}"
|
|
- POSTGRES_USER="${POSTGIS_USER:?}"
|
|
- POSTGRES_PASSWORD="${POSTGIS_PASSWORD:?}"
|
|
image: postgis/postgis:14-3.2
|
|
ports:
|
|
- 7654:5432
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/postgis:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|