-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (26 loc) · 878 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (26 loc) · 878 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
25
26
27
28
29
services:
xtream-converter:
build: .
container_name: xtream-converter
restart: unless-stopped
environment:
# Required: Xtream server credentials
- XTREAM_SERVER=http://your-xtream-server.com:port
- XTREAM_USERNAME=your_username
- XTREAM_PASSWORD=your_password
# Optional: Output configuration
- OUTPUT_PATH=/app/output
- OUTPUT_FILENAME=playlist.m3u
# Optional: Schedule configuration (cron format)
# Default: every 6 hours
- SCHEDULE_ENABLED=true
- SCHEDULE_CRON=0 */6 * * *
# Optional: Content types to include
- INCLUDE_LIVE=true
- INCLUDE_VOD=true
- INCLUDE_SERIES=true
volumes:
# Mount output directory for M3U files
- ./output:/app/output
# Optional: Mount config directory for config.json
# - ./config:/app/config