feat: add Dockerfile and docker-compose for server deployment

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-16 13:49:43 +02:00
parent 6a4ac8b8ed
commit 3d6469c60c
2 changed files with 25 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
services:
8cut:
build: .
ports:
- "8000:8000"
volumes:
- /path/to/videos:/videos:ro
- /path/to/exports:/exports
- 8cut-data:/data
environment:
MEDIA_DIRS: /videos
EXPORT_DIR: /exports
DB_PATH: /data/8cut.db
CACHE_DIR: /data/cache
volumes:
8cut-data: