16 lines
319 B
YAML
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:
|