Files
2026-07-16 17:37:25 +02:00

16 lines
319 B
YAML

services:
postgres:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_USER: soulless
POSTGRES_PASSWORD: soulless
POSTGRES_DB: soulless_necromancer
ports:
- "5433:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: