Files
mandalay/docker-compose.yml
onnwee e20cdf1af1 init
bitch
2026-01-02 23:13:03 -06:00

21 lines
456 B
YAML

services:
postgres:
image: postgis/postgis:16-3.4
container_name: mandalay-postgres
environment:
POSTGRES_USER: mandalay
POSTGRES_PASSWORD: mandalay
POSTGRES_DB: vegasmap
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U mandalay -d vegasmap"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres_data: