Files
streamlink-server/docker-compose.yml
2025-02-23 20:31:57 -06:00

21 lines
467 B
YAML

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