24 lines
699 B
YAML
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:
|