platform-codebase/features/video-studio/docker-compose.yml
Claude Code b9c6d3cb06 chore(video-studio): 🔧 Update Docker Compose services, networks, and volumes for video studio feature
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-19 19:58:07 -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:
- "25473: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: