first commit

This commit is contained in:
2025-02-23 20:31:57 -06:00
commit 34b4252adf
9 changed files with 366 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
version: '3.8'
services:
streamlink-server:
build:
context: .
dockerfile: Dockerfile
container_name: streamlink-server
ports:
- "6090:6090"
volumes:
- ./data:/data
restart: unless-stopped
environment:
- TZ=UTC
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6090/channels?username=65128929&password=34243636"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s