-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
24 lines (24 loc) · 825 Bytes
/
docker-compose.yml
File metadata and controls
24 lines (24 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
services:
slspanel:
image: alexanderwagnerdev/slspanel:latest
container_name: slspanel
restart: unless-stopped
environment:
- LANG=en
- TZ=UTC
- SLS_API_URL=http://sls-api-url:8789
- SLS_API_KEY=yourapikey
- SRT_PUBLISH_PORT=4001
- SRT_PLAYER_PORT=4000
- SRTLA_PUBLISH_PORT=5000
- SLS_DOMAIN_IP=your-sls-domain-sls-domain-ip
- SLS_STATS_DOMAIN_IP=your-sls-stats-domain-sls-domain-ip
- SLS_STATS_PORT=8789
- REQUIRE_LOGIN=True
- USERNAME=admin
- PASSWORD=password
# Optional: required when running behind a reverse proxy (e.g. Cloudflare Tunnel)
# - CSRF_TRUSTED_ORIGINS=https://mydomain.com,https://*.trycloudflare.com
# - SECURE_PROXY_SSL_HEADER=true
ports:
- "8000:8000/tcp"