platform-codebase/features/landing/backend-api/docker-compose.yml
Lilith 1d1d1eed49 🐛 Escape underscore in webmap SEO admin base_path
- Use /\_ instead of /_ for proper LIKE pattern matching

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 17:38:03 -08:00

22 lines
478 B
YAML

version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: lilith-landing-db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: lilith_landing
ports:
- "5432:5432"
volumes:
- landing_postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
volumes:
landing_postgres_data: