init: video-share — minimal no-signup file/video share with TTL

This commit is contained in:
2026-05-04 16:09:15 +02:00
commit 4ab1f87c1a
12 changed files with 2165 additions and 0 deletions

16
docker-compose.yaml Normal file
View File

@@ -0,0 +1,16 @@
services:
app:
build: .
restart: unless-stopped
environment:
PORT: 3000
DATA_DIR: /data/uploads
MAX_FILE_SIZE: ${MAX_FILE_SIZE:-524288000}
LOG_LEVEL: info
volumes:
- share_data:/data
expose:
- "3000"
volumes:
share_data: