forked from thnx4playing/streamlink-with-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 793 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
39 lines (36 loc) · 793 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
30
31
32
33
34
35
36
37
38
39
x-common: &common
user: 1027:100
logging:
driver: json-file
restart: unless-stopped
deploy:
resources:
limits:
memory: 512M
volumes:
- /volume1/twitch:/app/download
services:
streamlink:
<<: *common
image: ghcr.io/liofal/streamlink:3.3.4
build:
context: .
dockerfile: Dockerfile.web
env_file:
# - ../global.env
- default.env
- clientid.env
container_name: streamlink_${TWITCH}
environment:
- user=${TWITCH}
- quality=best
ports:
- "8080:8080"
ffmpeg:
<<: *common
image: ghcr.io/liofal/ffmpeg6:1.0.0
container_name: ffmpeg_converter
environment:
- SLEEPTIME=600
- WORKDIR=/app/download
restart: unless-stopped