Files
minecraft-account-manager/compose.yml
T

20 lines
438 B
YAML

services:
postgres:
image: postgres:17-alpine
environment:
POSTGRES_DB: minecraft_accounts
POSTGRES_USER: minecraft
POSTGRES_PASSWORD: minecraft
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U minecraft -d minecraft_accounts"]
interval: 5s
timeout: 5s
retries: 10
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: