Some checks failed
Docker Build & Push / build (push) Has been cancelled
- Added WebLLM service for client-side AI summarization and translation - Improved summary quality (5 sentences, 600 char limit) - Added Vietnamese character detection for proper language labels - Added Copy button for summary content - Key Points now extract conceptual ideas, not transcript excerpts - Removed mini player (scroll-to-minimize) feature - Fixed main.js null container error - Silent WebLLM loading (no overlay/toasts) - Added transcript service with yt-dlp
29 lines
746 B
YAML
Executable file
29 lines
746 B
YAML
Executable file
# KV-Tube Docker Compose for Synology NAS
|
|
# Usage: docker-compose up -d
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
kv-tube:
|
|
build: .
|
|
image: vndangkhoa/kv-tube:latest
|
|
container_name: kv-tube
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5011:5000"
|
|
volumes:
|
|
# Persist data (Easy setup: Just maps a folder)
|
|
- ./data:/app/data
|
|
# Local videos folder (Optional)
|
|
# - ./videos:/app/youtube_downloads
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- FLASK_ENV=production
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "-f", "http://localhost:5000/" ]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=true"
|