-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia-docker-compose.yml
113 lines (104 loc) · 2.28 KB
/
media-docker-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
110
111
112
version: '3'
name: 'media'
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
restart: unless-stopped
ports:
- 8096:8096
- 8920:8920
- 7359:7359/udp
- 1900:1900/udp
volumes:
- $MEDIADIR/jellyfin/config:/config
- $DATADIR/movies:/movies
- $DATADIR/shows:/shows
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
devices:
- /dev/dri:/dev/dri
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
restart: unless-stopped
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
volumes:
- $MEDIADIR/qbittorrent/config:/config
- $DATADIR/downloads:/downloads
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
radarr:
image: ghcr.io/linuxserver/radarr:latest
restart: unless-stopped
depends_on:
- qbittorrent
ports:
- 7878:7878
volumes:
- $MEDIADIR/radarr/config:/config
- $DATADIR/downloads:/downloads
- $DATADIR/movies:/movies
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
sonarr:
image: ghcr.io/linuxserver/sonarr:latest
restart: unless-stopped
depends_on:
- qbittorrent
ports:
- 8989:8989
volumes:
- $MEDIADIR/sonarr/config:/config
- $DATADIR/downloads:/downloads
- $DATADIR/shows:/shows
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
bazarr:
image: ghcr.io/linuxserver/bazarr:latest
restart: unless-stopped
ports:
- 6767:6767
volumes:
- $MEDIADIR/bazarr/config:/config
- $DATADIR/movies:/movies
- $DATADIR/shows:/shows
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
restart: unless-stopped
ports:
- 8191:8191
volumes:
- $MEDIADIR/flaresolverr/config:/config
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
prowlarr:
image: ghcr.io/hotio/prowlarr:latest
restart: unless-stopped
depends_on:
- flaresolverr
ports:
- 9696:9696
volumes:
- $MEDIADIR/prowlarr/config:/config
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ