-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
111 lines (104 loc) · 2.52 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
111 lines (104 loc) · 2.52 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
version: '3.9'
services:
gluetun:
image: qmcgaw/private-internet-access
container_name: gluetun
cap_add:
- NET_ADMIN
network_mode: bridge
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8000:8000/tcp # Build-in HTTP control header
- 8989:8989 # sonarr
- 7878:7878 # radarr
- 8686:8686 # lidarr
- 9117:9117 # jackett
- 7474:7474 # autorbrr
- 8191:8191 # flaresolverr
volumes:
- ./config/vpn:/gluetun
environment:
- VPNSP=custom
- OPENVPN_CUSTOM_CONFIG=/gluetun/client.ovpn
- TZ=${TZ}
- FIREWALL_OUTBOUND_SUBNETS=${NETWORK_SUBMASK}/24
- HTTPPROXY=on
restart: unless-stopped
radarr:
container_name: radarr
network_mode: "service:gluetun"
restart: unless-stopped
volumes:
- ./config/Radarr:/config
- /${LOCAL_MOUNT_POINT}/Movies:/mnt/Movies
- "sshfsdata:/mnt/feralMedia:ro"
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
image: linuxserver/radarr
sonarr:
container_name: sonarr
network_mode: "service:gluetun"
restart: unless-stopped
volumes:
- ./config/Sonarr:/config
- /${LOCAL_MOUNT_POINT}/TVShows:/mnt/TVShows
- "sshfsdata:/mnt/feralMedia:ro"
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
image: linuxserver/sonarr
lidarr:
container_name: lidarr
network_mode: "service:gluetun"
restart: unless-stopped
volumes:
- ./config/Lidarr:/config
- /${LOCAL_MOUNT_POINT}/Music:/mnt/Music
- "sshfsdata:/mnt/feralMedia:ro"
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
image: linuxserver/lidarr
jackett:
container_name: jackett
network_mode: "service:gluetun"
restart: unless-stopped
volumes:
- ./config:/config
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
image: linuxserver/jackett
autobrr:
container_name: autobrr
image: ghcr.io/autobrr/autobrr:latest
network_mode: "service:gluetun"
restart: unless-stopped
user: ${PUID}:${PGID}
environment:
- TZ=${TZ}
volumes:
- ./config/autobrr:/config
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
network_mode: "service:gluetun"
container_name: flaresolverr
environment:
- LOG_LEVEL=${LOG_LEVEL:-info}
- LOG_HTML=${LOG_HTML:-false}
- CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none}
- TZ=${TZ}
restart: unless-stopped
volumes:
sshfsdata:
driver: vieux/sshfs:latest
driver_opts:
sshcmd: "${FERAL_USER}@${FERAL_HOST}:/media/sdv1/home/${FERAL_USER}/private/media"
allow_other: ""