forked from serversathome/ServersatHome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdockge-arr-stack-compose.yaml
More file actions
112 lines (106 loc) · 2.72 KB
/
Copy pathdockge-arr-stack-compose.yaml
File metadata and controls
112 lines (106 loc) · 2.72 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
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=568
- PGID=568
- TZ=America/New_York
volumes:
- ./configs/prowlarr/:/config
- ${MEDIA_PATH}:/media/ # Use the MEDIA_PATH variable
ports:
- 9696:9696
restart: unless-stopped
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=568
- PGID=568
- TZ=America/New_York
volumes:
- ./configs/radarr/:/config
- ${MEDIA_PATH}:/media # Use the MEDIA_PATH variable
ports:
- 7878:7878
restart: unless-stopped
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=568
- PGID=568
- TZ=America/New_York
volumes:
- ./configs/sonarr/:/config
- ${MEDIA_PATH}:/media # Use the MEDIA_PATH variable
ports:
- 8989:8989
restart: unless-stopped
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
- TZ=America/New_York
ports:
- 5055:5055
volumes:
- ./configs/jellyseerr/:/app/config
restart: unless-stopped
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=568
- PGID=568
- TZ=America/New_York
volumes:
- ./configs/jellyfin:/config
- ${MEDIA_PATH}:/media # Use the MEDIA_PATH variable
ports:
- 8096:8096
restart: unless-stopped
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- LOG_LEVEL=info
- LOG_HTML=false
- CAPTCHA_SOLVER=none
- TZ=America/New_York
ports:
- 8191:8191
restart: unless-stopped
qbittorrent:
container_name: qbittorrent
image: ghcr.io/hotio/qbittorrent
restart: unless-stopped
ports:
- 8080:8080
environment:
- PUID=568
- PGID=568
- UMASK=002
- TZ=America/New_York
- WEBUI_PORTS=8080/tcp,8080/udp
- VPN_ENABLED=true
- VPN_CONF=wg0
- VPN_PROVIDER=generic
- VPN_LAN_NETWORK=10.99.0.0/24 # change this to your local LAN address!!
- VPN_EXPOSE_PORTS_ON_LAN
- VPN_AUTO_PORT_FORWARD=true
- VPN_AUTO_PORT_FORWARD_TO_PORTS=5687
- VPN_KEEP_LOCAL_DNS=false
- VPN_FIREWALL_TYPE=auto
- PRIVOXY_ENABLED=false
- UNBOUND_ENABLED=false
cap_add:
- NET_ADMIN
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
- net.ipv6.conf.all.disable_ipv6=1
volumes:
- ./configs/qbit/:/config
- ${MEDIA_PATH}:/media # Use the MEDIA_PATH variable