Files
agentic-coding-workflow/docker-compose.dev.yml
T

22 lines
441 B
YAML

services:
postgres:
image: postgres:16-alpine
container_name: acw-postgres-dev
restart: unless-stopped
environment:
POSTGRES_USER: acw
POSTGRES_PASSWORD: acw
POSTGRES_DB: acw
ports:
- "5432:5432"
volumes:
- acw-pg-dev:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U acw"]
interval: 5s
timeout: 5s
retries: 5
volumes:
acw-pg-dev: