system/docker-compose.yml
2025-08-07 14:35:52 +08:00

16 lines
332 B
YAML

version: "3.8"
services:
postgres:
image: postgres:18beta2-alpine
container_name: postgres-dev
environment:
POSTGRES_DB: system
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped