forked from macbury/SmartHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.media.yaml
executable file
·68 lines (67 loc) · 1.53 KB
/
docker-compose.media.yaml
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
# All media services, that don't need to be always online
version: '3.5'
services:
emby:
image: emby/embyserver:4.5.0.6
ports:
- 8096:8096
environment:
- UID=1000
- GID=100
- GIDLIST=100,44,1,0,1003
- TZ=Warsaw
devices:
- /dev/dri:/dev/dri
volumes:
- .docker/data/emby/config:/config
- /mnt/Movies:/mnt/Movies
- /mnt/MoviesAndTV:/mnt/MoviesAndTV
- /mnt/Multimedia:/mnt/Multimedia
- /mnt/Music:/mnt/Music
lidarr:
image: linuxserver/lidarr
environment:
- PUID=0
- PGID=1003
- TZ=Europe/Warsaw
- UMASK_SET=022 #optional
volumes:
- .docker/data/lidarr:/config
- /mnt/Music:/music
- /mnt/UsbDisk:/downloads
ports:
- "0.0.0.0:18686:8686"
restart: unless-stopped
depends_on:
- torrents
- emby
sonarr:
image: linuxserver/sonarr
ports:
- 8989:8989
environment:
PUID: 0
PGID: 1003
TZ: "Europe/Warsaw"
volumes:
- .docker/data/sonarr:/config
- /mnt/MoviesAndTV:/tv
- /mnt/UsbDisk:/downloads
depends_on:
- torrents
- emby
torrents:
image: linuxserver/deluge:latest
network_mode: host
environment:
- PUID=0
- PGID=1003
- TZ=Warsaw
- DELUGE_LOGLEVEL=info #optional
volumes:
- .docker/data/deluge/config:/config
- /mnt/Movies:/data/Movies
- /mnt/MoviesAndTV:/data/MoviesAndTV
- /mnt/Music:/data/Music
- /mnt/UsbDisk:/data/UsbDisk
restart: unless-stopped