platform-codebase/features/platform-admin/docker-compose.yml
Lilith fadbf828c9 style(truth-validation): update legal review styles
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-04 19:44:36 -08:00

24 lines
548 B
YAML

version: '3.8'
services:
platform-admin-db:
image: postgres:16-alpine
container_name: platform-admin-db
environment:
POSTGRES_USER: lilith
POSTGRES_PASSWORD: lilith
POSTGRES_DB: platform_admin
ports:
- "5435:5432"
volumes:
- platform-admin-db-data:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U lilith -d platform_admin"]
interval: 10s
timeout: 5s
retries: 5
volumes:
platform-admin-db-data:
driver: local