platform-codebase/features/video-studio/docker-compose.yml
2026-03-18 19:28:43 -07:00

24 lines
699 B
YAML

version: "3.9"
services:
postgres:
image: postgres:16-alpine
container_name: lilith-video-studio-postgres
environment:
POSTGRES_DB: video_studio
POSTGRES_USER: ${DATABASE_POSTGRES_USER:-lilith}
POSTGRES_PASSWORD: ${DATABASE_POSTGRES_PASSWORD:-lilith_dev}
ports:
- "25470:5432"
volumes:
- video_studio_postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${DATABASE_POSTGRES_USER:-lilith} -d video_studio"]
interval: 10s
timeout: 5s
retries: 5
# processing-service has been migrated to @applications/@imajin/services/imajin-video (port 8010)
volumes:
video_studio_postgres_data: