Files
sandbox/deploy/docker-compose.dev.yml
pptx704 bd78cc068c Initial project structure for Wrenn Sandbox
Set up directory layout, Makefiles, go.mod files, docker-compose,
and empty placeholder files for all packages.
2026-03-09 17:22:47 +06:00

29 lines
546 B
YAML

services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_USER: wrenn
POSTGRES_PASSWORD: wrenn
POSTGRES_DB: wrenn
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
prometheus:
image: prom/prometheus:latest
ports:
- "9090:9090"
volumes:
- ./deploy/prometheus.yml:/etc/prometheus/prometheus.yml
grafana:
image: grafana/grafana:latest
ports:
- "3001:3000"
environment:
GF_SECURITY_ADMIN_PASSWORD: admin
volumes:
pgdata: