first commit

This commit is contained in:
pie
2026-05-03 16:48:18 +01:00
commit d0dba8183b
10 changed files with 610 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
version: '3.8'
services:
boys_streaming:
build: .
container_name: boys_streaming
network_mode: host
restart: unless-stopped
volumes:
- ./config:/app/config
- ./videos:/app/videos
environment:
- VIDEOS_DIR=/app/videos
- CONFIG_DIR=/app/config
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 10s
retries: 3