forked from shanesoh/media-server-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
79 lines (75 loc) · 2.11 KB
/
Copy pathdocker-compose.yml
File metadata and controls
79 lines (75 loc) · 2.11 KB
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
version: "2"
services:
bit:
image: linuxserver/transmission
restart: always
ports:
- "9091:9091"
- "51413:51413"
- "51413:51413/udp"
volumes:
- ${USERDIR}/config/transmission:/config
- ${USERDIR}/media/downloads:/downloads
- ${USERDIR}/media/watch:/watch
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
sonarr:
image: linuxserver/sonarr
restart: always
depends_on:
- bit
- jackett
ports:
- "8989:8989"
volumes:
- ${USERDIR}/config/sonarr:/config
- ${USERDIR}/media/downloads:/downloads
- ${USERDIR}/media/tv:/tv
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
radarr:
image: linuxserver/radarr
restart: always
depends_on:
- bit
- jackett
ports:
- "7878:7878"
volumes:
- ${USERDIR}/config/radarr:/config
- ${USERDIR}/media/downloads:/downloads
- ${USERDIR}/media/movies:/movies
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
jackett:
image: linuxserver/jackett
restart: always
ports:
- "9117:9117"
volumes:
- ${USERDIR}/config/jackett:/config
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
emby:
image: dperson/emby
restart: always
ports:
- "8096:8096"
expose:
- "7359/udp"
- "1900/udp"
volumes:
- ${USERDIR}/config/emby:/config
- ${USERDIR}/media/movies:/media/movies
- ${USERDIR}/media/tv:/media/tv
environment:
- USERID=${PUID}
- GROUPID=${PGID}