-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
176 lines (164 loc) · 4.05 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
version: '3'
services:
ouroboros:
image: pyouroboros/ouroboros
container_name: ouroboros
hostname: ouroboros
environment:
- CLEANUP=true
- INTERVAL=300
- LOG_LEVEL=info
- SELF_UPDATE=true
- IGNORE=mongo influxdb postgres mariadb
- TZ
- NOTIFIERS
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
traefik:
image: traefik:v1.7
command: --web --docker --docker.watch --docker.domain=${DOMAIN} --docker.exposedbydefault=false --acme.domains=${DOMAIN}
container_name: traefik
hostname: traefik
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${CONFIG}/traefik/acme.json:/acme.json
- ${CONFIG}/traefik/traefik.toml:/etc/traefik/traefik.toml
- ${CONFIG}/traefik/.htpasswd:/etc/traefik/.htpasswd:ro
labels:
traefik.enable: "true"
traefik.frontend.rule: "Host:monitor.${DOMAIN}"
traefik.port: "8080"
restart: unless-stopped
plex:
#image: linuxserver/plex
image: plexinc/pms-docker
container_name: plex
hostname: plex
ports:
# plex ui
- "32400:32400"
- "32400:32400/udp"
# plex dlna
- "32469:32469"
- "32469:32469/udp"
- "1900:1900/udp"
# bonjour discovery
- "5353:5353/udp"
# roku control
- "8324:8324"
# GDM discovery
- "32410:32410/udp"
- "32412:32412/udp"
- "32413:32413/udp"
- "32414:32414/udp"
volumes:
- ${CONFIG}/plex:/config
- ${DATA}/tv:/media/tv
- ${DATA}/movies:/media/movies
- ${DATA}/music:/media/music
- ${DATA}/anime:/media/anime
- ${DOWNLOAD}/transcode:/transcode
environment:
- PGID
- PUID
- TZ
- VERSION=docker
- PLEX_CLAIM=${CLAIM_TOKEN}
labels:
traefik.enable: "true"
traefik.port: "32400"
traefik.frontend.rule: "Host:plex.${DOMAIN}"
restart: unless-stopped
nzbget:
image: linuxserver/nzbget:latest
container_name: nzbget
hostname: nzbget
ports:
- "6789:6789"
volumes:
- ${CONFIG}/nzbget:/config
- ${DOWNLOAD}/complete:/downloads
- ${DOWNLOAD}/incomplete:/incomplete-downloads
- ${DOWNLOAD}/watch:/watch
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "6789"
traefik.frontend.rule: "Host:nzbget.${DOMAIN}"
restart: unless-stopped
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr
hostname: sonarr
ports:
- "8989:8989"
volumes:
- ${CONFIG}/sonarr:/config
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/tv:/tv
- ${DATA}/anime:/anime
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "8989"
traefik.frontend.rule: "Host:sonarr.${DOMAIN}"
restart: unless-stopped
radarr:
image: linuxserver/radarr:latest
container_name: radarr
hostname: radarr
ports:
- "7878:7878"
volumes:
- ${CONFIG}/radarr:/config
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/movies:/movies
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "7878"
traefik.frontend.rule: "Host:radarr.${DOMAIN}"
restart: unless-stopped
rutorrent:
image: linuxserver/rutorrent:latest
container_name: rutorrent
hostname: rutorrent
ports:
- "8888:80"
- "5000:5000"
- "6881:6881/udp"
- "51413:51413"
volumes:
- ${CONFIG}/rutorrent:/config
- ${DOWNLOAD}/complete:/downloads
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "80"
traefik.frontend.rule: "Host:rutorrent.${DOMAIN}"
restart: unless-stopped
waypost:
image: gregbuehler/waypost:latest
container_name: waypost
hostname: waypost
ports:
- "53:53"
- "53:53/udp"
- "5554:5554"
restart: unless-stopped