-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
92 lines (91 loc) · 2.01 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
version: "2"
services:
sonarr:
image: linuxserver/sonarr
networks:
default:
ipv4_address: 172.23.0.51
container_name: sonarr
environment:
- PUID=1026
- PGID=100
- TZ=Europe/Moscow
- UMASK_SET=022 #optional
volumes:
- ./sonarr/config:/config
- ./TV:/tv
- ./downloadclient-downloads:/downloads
ports:
- 8989:8989
restart: unless-stopped
radarr:
image: linuxserver/radarr
networks:
default:
ipv4_address: 172.23.0.52
container_name: radarr
environment:
- PUID=1026
- PGID=100
- TZ=Europe/Moscow
- UMASK_SET=022 #optional
volumes:
- ./radarr/config:/config
- ./Films:/movies
- ./downloadclient-downloads:/downloads
ports:
- 7878:7878
restart: unless-stopped
qbittorrent:
image: linuxserver/qbittorrent
networks:
default:
ipv4_address: 172.23.0.53
container_name: qbittorrent
environment:
- PUID=1026
- PGID=100
- TZ=Europe/Moscow
- UMASK_SET=022
- WEBUI_PORT=8068
volumes:
- ./qbittorrent/config:/config
- ./downloadclient-downloads:/downloads
ports:
- 6881:6881
- 6881:6881/udp
- 8068:8068
restart: unless-stopped
jackett:
image: linuxserver/jackett
networks:
default:
ipv4_address: 172.23.0.54
container_name: jackett
environment:
- PUID=1026
- PGID=100
- TZ=Europe/Moscow
# - RUN_OPTS=run options here #optional
volumes:
- ./jackett/config:/config
- ./downloadclient-downloads:/downloads
ports:
- 9117:9117
restart: unless-stopped
gramarrru:
image: memodota/gramarrru
networks:
default:
ipv4_address: 172.23.0.55
container_name: gramarrru
depends_on:
- sonarr
- radarr
volumes:
- ./gramarr/config.json:/config/config.json
restart: unless-stopped
networks:
default:
external:
name: nginx-proxy