-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.release.yml
More file actions
39 lines (35 loc) · 1.16 KB
/
docker-compose.release.yml
File metadata and controls
39 lines (35 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Pre-built images from GHCR — no local source or build required.
# Images are published on v* Git tags (e.g. v1.0.0). Default tag is latest (newest release).
# Usage: docker compose -f docker-compose.release.yml up -d
# Or: ./scripts/install.sh / scripts\install.ps1
name: video-driven-skill
services:
backend:
image: ghcr.io/thought2code/video-driven-skill-backend:${VD_SKILL_IMAGE_TAG:-latest}
environment:
VIDEO_DRIVEN_SKILL_HOME: /data
AI_API_KEY: ${AI_API_KEY:-}
AI_BASE_URL: ${AI_BASE_URL:-https://api.openai.com/v1}
AI_MODEL: ${AI_MODEL:-gpt-4o-mini}
FFMPEG_PATH: ${FFMPEG_PATH:-ffmpeg}
volumes:
- app-data:/data
expose:
- "8080"
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:8080/api/skills >/dev/null || exit 1"]
interval: 10s
timeout: 5s
retries: 12
start_period: 90s
restart: unless-stopped
frontend:
image: ghcr.io/thought2code/video-driven-skill-frontend:${VD_SKILL_IMAGE_TAG:-latest}
ports:
- "${FRONTEND_PORT:-3000}:80"
depends_on:
backend:
condition: service_healthy
restart: unless-stopped
volumes:
app-data: