-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.mediacentre.yml
executable file
·144 lines (144 loc) · 3.36 KB
/
docker-compose.mediacentre.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
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
version: "3.7"
services:
radarr:
container_name: radarr
image: ghcr.io/hotio/radarr
restart: unless-stopped
logging:
driver: json-file
ports:
- "7878:7878"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/radarr:/config
- /storage/media-centre:/storage/media-centre
sonarr:
container_name: sonarr
image: ghcr.io/hotio/sonarr
restart: unless-stopped
logging:
driver: json-file
ports:
- "8989:8989"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/sonarr:/config
- /storage/media-centre:/storage/media-centre
lidarr:
container_name: lidarr
image: ghcr.io/hotio/lidarr
restart: unless-stopped
logging:
driver: json-file
ports:
- "8686:8686"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/lidarr:/config
- /storage/media-centre:/storage/media-centre
readarr:
container_name: readarr
image: ghcr.io/hotio/readarr
restart: unless-stopped
logging:
driver: json-file
ports:
- "8787:8787"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/readarr:/config
- /storage/media-centre:/storage/media-centre
bazarr:
container_name: bazarr
image: ghcr.io/hotio/bazarr
restart: unless-stopped
logging:
driver: json-file
ports:
- "6767:6767"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/bazarr:/config
- /storage/media-centre:/storage/media-centre
qbittorrent:
container_name: qbittorrent
image: ghcr.io/hotio/qbittorrent
restart: unless-stopped
logging:
driver: json-file
ports:
- "8080:8080"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/qbittorrent:/config
- /storage/media-centre/torrents:/storage/media-centre/torrents
prowlarr:
container_name: prowlarr
image: ghcr.io/hotio/prowlarr
restart: unless-stopped
logging:
driver: json-file
ports:
- "9696:9696"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/prowlarr:/config
jellyfin:
container_name: jellyfin
image: ghcr.io/hotio/jellyfin
restart: unless-stopped
logging:
driver: json-file
ports:
- "8096:8096"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/jellyfin:/config
- /storage/media-centre/media:/storage/media-centre/media
jellyseerr:
container_name: jellyseerr
image: ghcr.io/hotio/jellyseerr
restart: unless-stopped
logging:
driver: json-file
ports:
- "5055:5055"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
volumes:
- /docker/appdata/jellyseerr:/config