-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
197 lines (180 loc) · 4.95 KB
/
docker-compose.yml
File metadata and controls
197 lines (180 loc) · 4.95 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
services:
# ============================================================================
# MEDIA SERVER
# ============================================================================
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
network_mode: host
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- VERSION=docker
- PLEX_CLAIM=${PLEX_CLAIM}
volumes:
- ${CONFIG_DIR}/plex:/config
- ${DATA_DIR}/media:/data/media
devices:
- /dev/dri:/dev/dri # Intel/AMD hardware transcoding — remove if not needed
restart: unless-stopped
# ============================================================================
# PVR / MEDIA MANAGEMENT
# ============================================================================
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/sonarr:/config
- ${DATA_DIR}:/data
ports:
- "8989:8989"
restart: unless-stopped
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/radarr:/config
- ${DATA_DIR}:/data
ports:
- "7878:7878"
restart: unless-stopped
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/lidarr:/config
- ${DATA_DIR}:/data
ports:
- "8686:8686"
restart: unless-stopped
# ============================================================================
# INDEXER MANAGEMENT
# ============================================================================
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/prowlarr:/config
ports:
- "9696:9696"
restart: unless-stopped
# ============================================================================
# DOWNLOAD CLIENT
# ============================================================================
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- WEBUI_PORT=8080
volumes:
- ${CONFIG_DIR}/qbittorrent:/config
- ${DATA_DIR}/torrents:/data/torrents
ports:
- "8080:8080"
- "6881:6881"
- "6881:6881/udp"
restart: unless-stopped
# ============================================================================
# EXTRAS
# ============================================================================
autobrr:
image: ghcr.io/autobrr/autobrr:latest
container_name: autobrr
environment:
- TZ=${TZ}
user: "${PUID}:${PGID}"
volumes:
- ${CONFIG_DIR}/autobrr:/config
ports:
- "7474:7474"
restart: unless-stopped
unpackerr:
image: ghcr.io/unpackerr/unpackerr:latest
container_name: unpackerr
environment:
- TZ=${TZ}
# Sonarr
- UN_SONARR_0_URL=http://sonarr:8989
- UN_SONARR_0_API_KEY=${SONARR_API_KEY}
- UN_SONARR_0_PATHS_0=/data/torrents/tv
# Radarr
- UN_RADARR_0_URL=http://radarr:7878
- UN_RADARR_0_API_KEY=${RADARR_API_KEY}
- UN_RADARR_0_PATHS_0=/data/torrents/movies
# Lidarr
- UN_LIDARR_0_URL=http://lidarr:8686
- UN_LIDARR_0_API_KEY=${LIDARR_API_KEY}
- UN_LIDARR_0_PATHS_0=/data/torrents/music
volumes:
- ${DATA_DIR}/torrents:/data/torrents
restart: unless-stopped
bazarr:
image: lscr.io/linuxserver/bazarr:latest
container_name: bazarr
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/bazarr:/config
- ${DATA_DIR}/media:/data/media
ports:
- "6767:6767"
restart: unless-stopped
tautulli:
image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/tautulli:/config
ports:
- "8181:8181"
restart: unless-stopped
notifiarr:
image: golift/notifiarr:latest
container_name: notifiarr
hostname: notifiarr
environment:
- DN_API_KEY=${NOTIFIARR_API_KEY}
- TZ=${TZ}
volumes:
- ${CONFIG_DIR}/notifiarr:/config
- /var/run/utmp:/var/run/utmp
ports:
- "5454:5454"
restart: unless-stopped
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- ${CONFIG_DIR}/homepage:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- "3000:3000"
restart: unless-stopped