feat: implement vertical crop, local LLM deepseek-v4-flash, multi-threading, word-level pink box highlight subtitles, and Nextcloud scan sync
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
services:
|
||||
backend:
|
||||
build: .
|
||||
container_name: openshorts-backend
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
- .:/app
|
||||
- /app/__pycache__
|
||||
- ./output:/app/output
|
||||
restart: unless-stopped
|
||||
|
||||
frontend:
|
||||
build: ./dashboard
|
||||
container_name: openshorts-frontend
|
||||
ports:
|
||||
- "5175:5173"
|
||||
volumes:
|
||||
- ./dashboard:/app
|
||||
- /app/node_modules
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- backend
|
||||
|
||||
renderer:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: render-service/Dockerfile
|
||||
container_name: openshorts-renderer
|
||||
ports:
|
||||
- "3100:3100"
|
||||
volumes:
|
||||
- ./output:/output
|
||||
environment:
|
||||
- REMOTION_BUNDLE_PATH=/app/remotion
|
||||
- OUTPUT_DIR=/output
|
||||
- PORT=3100
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- backend
|
||||
Reference in New Issue
Block a user