platform-codebase/features/landing/backend-api/docker-compose.yml
Lilith e0288f0625 chore(attributes): 🔧 Update 27 YAML configuration files in attributes directory
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-01-31 17:52:27 -08:00

22 lines
479 B
YAML
Executable file

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:
- "25438: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: