-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
94 lines (88 loc) · 2.22 KB
/
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
services:
bazarr:
image: lscr.io/linuxserver/bazarr:latest
container_name: bazarr
env_file:
- config/.env
- config/bazarr.env
volumes:
- ${ROOT_DIRECTORY}/config/bazarr:/config
- ${ROOT_DIRECTORY}/data/media/movies:/data/media/movies
- ${ROOT_DIRECTORY}/data/media/tv:/data/media/tv
ports:
- 6767:6767
restart: unless-stopped
overseerr:
image: lscr.io/linuxserver/overseerr:latest
container_name: overseerr
env_file:
- config/.env
- config/overseerr.env
volumes:
- ${ROOT_DIRECTORY}/config/overseerr:/config
ports:
- 5055:5055
restart: unless-stopped
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
env_file:
- config/.env
- config/plex.env
volumes:
- ${ROOT_DIRECTORY}/config/plex:/config
- ${ROOT_DIRECTORY}/data/media/movies:/data/media/movies
- ${ROOT_DIRECTORY}/data/media/tv:/data/media/tv
ports:
- 32400:32400
restart: unless-stopped
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
env_file:
- config/.env
- config/prowlarr.env
volumes:
- ${ROOT_DIRECTORY}/config/prowlarr:/config
ports:
- 9696:9696
restart: unless-stopped
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
env_file:
- config/.env
- config/radarr.env
volumes:
- ${ROOT_DIRECTORY}/config/radarr:/config
- ${ROOT_DIRECTORY}/data:/data
ports:
- 7878:7878
restart: unless-stopped
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
env_file:
- config/.env
- config/sonarr.env
volumes:
- ${ROOT_DIRECTORY}/config/sonarr:/config
- ${ROOT_DIRECTORY}/data:/data
ports:
- 8989:8989
restart: unless-stopped
deluge:
image: lscr.io/linuxserver/deluge:latest
container_name: deluge
env_file:
- config/.env
- config/deluge.env
volumes:
- ${ROOT_DIRECTORY}/config/deluge:/config
- ${ROOT_DIRECTORY}/data/torrents:/data/torrents
ports:
- 8112:8112
- 6881:6881
- 6881:6881/udp
- 58846:58846
restart: unless-stopped