-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
109 lines (109 loc) · 2.46 KB
/
compose.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
services:
nginx:
image: nginx:latest
restart: unless-stopped
container_name: nginx
ports:
- 80:80
depends_on:
- prowlarr
- sonarr
- radarr
- heimdall
- jellyfin
- qbittorrent
volumes:
- ./conf/nginx:/etc/nginx/conf.d
heimdall:
image: lscr.io/linuxserver/heimdall:latest
container_name: heimdall
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./conf/heimdall:/config
restart: unless-stopped
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
- TZ=Europe/Kiev
ports:
- 5055:5055
volumes:
- ./conf/jellyseerr:/app/config
restart: unless-stopped
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Kiev
- WEBUI_PORT=8080
volumes:
- ./conf/qbit/:/config
- /mnt/media/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Kiev
volumes:
- ./conf/prowlarr:/config
restart: unless-stopped
ports:
- "9696:9696"
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Kiev
volumes:
- ./conf/sonarr:/config
- /mnt/media/tv:/tv #optional
- /mnt/media/downloads:/downloads #optional
ports:
- "8989:8989"
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Kiev
volumes:
- ./conf/radarr:/config
- /mnt/media/movies:/movies #optional
- /mnt/media/downloads:/downloads #optional
ports:
- "7878:7878"
restart: unless-stopped
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Kiev
volumes:
- ./conf/jellyfin:/config
- /mnt/media/tv:/data/tvshows
- /mnt/media/movies:/data/movies
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
version: "3.7"