-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharr-stack.yml
155 lines (141 loc) · 3.47 KB
/
arr-stack.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
name: "arr_stack"
networks:
arr-network:
name: arr-network
x-arr-service: &x-arr-service
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
networks:
- arr-network
restart: unless-stopped
extra_hosts:
- "host.jellyfin.server:192.168.2.101"
services:
sonarr:
<<: *x-arr-service
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
volumes:
- /data/sonarr/data:/config
- media-server:/media-server
ports:
- 8989:8989
radarr:
<<: *x-arr-service
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
volumes:
- /data/radarr/data:/config
- media-server:/media-server
ports:
- 7878:7878
readarr:
<<: *x-arr-service
image: lscr.io/linuxserver/readarr:develop
container_name: readarr
volumes:
- /data/readarr/data:/config
- media-server:/media-server
ports:
- 8787:8787
lidarr:
<<: *x-arr-service
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
volumes:
- /data/lidarr/data:/config
- media-server:/media-server
ports:
- 8686:8686
prowlarr:
<<: *x-arr-service
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
volumes:
- /data/prowlarr/data:/config
ports:
- 9696:9696
bazarr:
<<: *x-arr-service
image: lscr.io/linuxserver/bazarr:latest
container_name: bazarr
volumes:
- /data/bazarr/data:/config
- media-server:/media-server
ports:
- 6767:6767
jellyseerr:
<<: *x-arr-service
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
ports:
- 5055:5055
volumes:
- /data/jellyseerr/data:/app/config
ariang:
<<: *x-arr-service
container_name: ariang
image: hurlenko/aria2-ariang
ports:
- 8077:8080
volumes:
- /data/ariang/data:/aria2/conf
- media-server:/media-server
environment:
- RPC_SECRET=Kvih8VMr6SMxgaainUoQkjANMKUUTO
- ARIA2RPCPORT=443
- TZ=Europe/Berlin
- PUID=1000
- PGID=1000
audiobookshelf:
<<: *x-arr-service
container_name: audiobookshelf
image: ghcr.io/advplyr/audiobookshelf:latest
ports:
- 13378:80
volumes:
- media-server:/media-server
- /data/audiobookshelf/config:/config
- /data/audiobookshelf/metadata:/metadata
metube:
<<: *x-arr-service
image: ghcr.io/alexta69/metube
container_name: metube
ports:
- "8081:8081"
volumes:
- media-server:/media-server
environment:
- DOWNLOAD_DIR=/media-server/Youtube
deploy:
resources:
limits:
cpus: '0.7'
syncthing:
<<: *x-arr-service
image: syncthing/syncthing
container_name: syncthing
hostname: syncthing
volumes:
- /data/syncthing/data:/var/syncthing
- media-server:/media-server
ports:
- 8384:8384 # Web UI
- 22000:22000/tcp # TCP file transfers
- 22000:22000/udp # QUIC file transfers
- 21027:21027/udp # Receive local discovery broadcasts
restart: unless-stopped
healthcheck:
test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1
interval: 1m
timeout: 10s
retries: 3
volumes:
media-server:
driver: local
driver_opts:
type: cifs
device: //192.168.2.148/media-server
o: username=${CIFS_USERNAME},password=${CIFS_PASSWORD},uid=1000,gid=1000,file_mode=0755,dir_mode=0755