forked from AmIBeingObtuse/Youtubestacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththe arrs stack
81 lines (77 loc) · 2.72 KB
/
the arrs stack
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
# The Arrs Stack - youtube.com/@KLTechVideos
# Prowlarr - Sonarr - Radarr - Lidarr - Readarr
version: "2.1"
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:nightly # Change to "latest" for stable
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Prowlarr\Config:/config
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Prowlarr\Backup:/data/Backup
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Downloads:/data/downloads
ports:
- 9697:9696
restart: unless-stopped
sonarr:
image: lscr.io/linuxserver/sonarr:develop # Change to "latest" for stable
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Sonarr\Config:/config
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Sonarr\Backup:/data/Backup
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Sonarr\tvshows:/data/tvshows
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Downloads:/data/downloads
ports:
- 8989:8989
restart: unless-stopped
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Radarr\Config:/config
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Radarr\Movies:/data/movies
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Downloads:/data/downloads
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Radarr\Backup:/data/Backup
ports:
- 7878:7878
restart: unless-stopped
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Lidarr\Config:/config
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Lidarr\Music:/data/musicfolder
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Downloads:/data/downloads
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Lidarr\Backup:/data/Backup
ports:
- 8686:8686
restart: unless-stopped
readarr:
image: lscr.io/linuxserver/readarr:develop
container_name: readarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Readarr\Config:/config
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Readarr\Books:/data/books # optional
- E:\My Data\Keith\Documents\Docker Stuff\arrs\Downloads:/data/downloads # optional
ports:
- 8787:8787
restart: unless-stopped