-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
99 lines (94 loc) · 2.11 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
version: '3.2'
services:
homeflix.torrent:
image: lsioarmhf/deluge
ports:
- "8112:8112"
volumes:
- type: bind
source: /home/pi/_drive/downloads
target: /downloads
- type: bind
source: /home/pi/_drive/.config/deluge
target: /config
environment:
PUID: '1000'
PGID: '1000'
TZ: 'America/Sao_Paulo'
UMASK_SET: '022'
networks:
- homeflix
homeflix.indexer:
image: lsioarmhf/jackett
ports:
- "9117:9117"
volumes:
- type: bind
source: /home/pi/_drive/downloads
target: /downloads
- type: bind
source: /home/pi/_drive/.config/jackett
target: /config
environment:
PUID: '1000'
PGID: '1000'
TZ: 'America/Sao_Paulo'
networks:
- homeflix
homeflix.movies:
image: lsioarmhf/radarr
ports:
- "7878:7878"
volumes:
- type: bind
source: /home/pi/_drive/downloads
target: /downloads
- type: bind
source: /home/pi/_drive/.config/radarr
target: /config
- type: bind
source: /home/pi/_drive/downloads/movies
target: /movies
environment:
PUID: '1000'
PGID: '1000'
TZ: 'America/Sao_Paulo'
networks:
- homeflix
homeflix.series:
image: lsioarmhf/sonarr
ports:
- "8989:8989"
volumes:
- type: bind
source: /home/pi/_drive/downloads
target: /downloads
- type: bind
source: /home/pi/_drive/.config/sonarr
target: /config
- type: bind
source: /home/pi/_drive/downloads/series
target: /tv
environment:
PUID: '1000'
PGID: '1000'
TZ: 'America/Sao_Paulo'
networks:
- homeflix
# homeflix.series:
# image: lsioarmhf/kodi-headless
# ports:
# - "8080:8080"
# - "9777:9777/udp"
# volumes:
# - type: bind
# source: /home/pi/_drive/.config/kodi-headless
# target: /config
# environment:
# PUID: '1000'
# PGID: '1000'
# TZ: 'America/Sao_Paulo'
# networks:
# - homeflix
networks:
homeflix: