-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
77 lines (76 loc) · 1.65 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
version: '3'
services:
sonarr:
image: linuxserver/sonarr
container_name: sonarr
restart: unless-stopped
env_file:
- ./config/sonarr/env
ports:
- 8989:8989
volumes:
- ./config/sonarr/:/config/
- ./storage/:/storage/
radarr:
image: linuxserver/radarr
container_name: radarr
restart: unless-stopped
env_file:
- ./config/radarr/env
ports:
- 7878:7878
volumes:
- ./config/radarr/:/config/
- ./storage/:/storage/
transmission:
image: linuxserver/transmission
container_name: transmission
restart: unless-stopped
env_file:
- ./config/transmission/env
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
volumes:
- ./config/transmission/:/config/
- ./storage/:/storage/
sabnzbd:
image: linuxserver/sabnzbd
container_name: sabnzbd
restart: unless-stopped
env_file:
- ./config/sabnzbd/env
ports:
- 8080:8080
volumes:
- ./config/sabnzbd/:/config/
- ./storage/:/storage/
jackett:
image: linuxserver/jackett
container_name: jackett
restart: unless-stopped
ports:
- 9117:9117
volumes:
- ./config/jackett/:/config/
nzbhydra:
image: linuxserver/nzbhydra2
container_name: nzbhydra
restart: unless-stopped
ports:
- 5076:5076
volumes:
- ./config/nzbhydra2/:/config/
plex:
image: linuxserver/plex
container_name: plex
restart: unless-stopped
network_mode: host
ports:
- 32400:32400
env_file:
- ./config/plex/env
volumes:
- ./config/plex/:/config/
- ./storage/library/:/library/