-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
122 lines (117 loc) · 2.93 KB
/
docker-compose.yaml
File metadata and controls
122 lines (117 loc) · 2.93 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
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
version: "3"
services:
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
# line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
# QBT UI Port
- 8090:8090
# Bittorrent port
- 6881:6881
- 6881:6881/udp
# Web port
- 9080:8080
- 9117:9117
# Sonar
- 8989:8989
# Radarr
- 7878:7878
# Lidarr port
- 8686:8686
# Overseer
- 5055:5055
# Prowlarr port
- 9696:9696
volumes:
- /opt/stack/gluetun:/gluetun
environment:
# See https://github.com/qdm12/gluetun/wiki
- VPN_SERVICE_PROVIDER=nordvpn
- OPENVPN_USER=
- OPENVPN_PASSWORD=
- TZ=America/Sao_Paulo
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent
environment:
- PUID=115
- PGID=1000
- TZ=America/Sao_Paulo
- UMASK_SET=022
- WEBUI_PORT=8090
volumes:
- /opt/stack/qbt/config:/config
- /dados/torrents:/downloads
- /nfs/series:/tvdownloads
- /nfs/filmes:/filmdownloads
network_mode: service:gluetun
restart: unless-stopped
depends_on:
- gluetun
prowlarr:
image: hotio/prowlarr:testing
container_name: prowlarr
environment:
- PUID=115
- PGID=1000
- TZ=America/Sao_Paulo
volumes:
- /opt/stack/prowlarr:/config
restart: unless-stopped
network_mode: service:gluetun
depends_on:
- gluetun
- qbittorrent
sonarr:
image: linuxserver/sonarr
container_name: sonarr
environment:
- PUID=115
- PGID=1000
- TZ=America/Sao_Paulo
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/stack/sonarr/config:/config
- /nfs/series:/tv
- /dados/torrents:/downloads
restart: unless-stopped
network_mode: service:gluetun
depends_on:
- prowlarr
- qbittorrent
radarr:
image: linuxserver/radarr
container_name: radarr
environment:
- PUID=115
- PGID=1000
- TZ=America/Sao_Paulo
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/stack/radarr/config:/config
- /nfs/filmes:/movies
- /dados/torrents:/downloads
restart: unless-stopped
network_mode: service:gluetun
depends_on:
- prowlarr
- qbittorrent
overseerr:
image: lscr.io/linuxserver/overseerr
container_name: overseerr
environment:
- PUID=115
- PGID=1000
- TZ=America/Sao_Paulo
network_mode: service:gluetun
volumes:
- /opt/stack/overseerr/config:/config
restart: unless-stopped