Skip to content

Commit 3876f04

Browse files
committedOct 31, 2024
init migrate downloaders to arr
1 parent 9dd5368 commit 3876f04

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,6 @@ terraform.rc
4444

4545
## Packer
4646
credentials.pkr.hcl
47+
48+
## Testing
49+
/docker/health

‎docker/arrs/docker-compose.yml

+57-1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ services:
147147
- 21027:21027/udp
148148
restart: unless-stopped
149149

150+
## Should move this to Ubu
150151
code-server:
151152
image: ghcr.io/linuxserver/code-server@sha256:78cb3a72f7ecfa67feab0475656516330e7931b6dee7c8313a545654b0fc2985
152153
container_name: code-server
@@ -158,10 +159,65 @@ services:
158159
- PROXY_DOMAIN=$PROXY_DOMAIN
159160
volumes:
160161
- /docker/appdata/code-server/config:/config
161-
- /home/mafyuh/.ssh:/home/mafyuh/.ssh
162162
ports:
163163
- 8443:8443
164164
restart: unless-stopped
165+
## Downloaders
166+
sabnzbd:
167+
image: ghcr.io/linuxserver/sabnzbd@sha256:293517b90ef929178387f07c074c1f88d96d94eac3c1d95944ba2891527c1396
168+
container_name: sabnzbd
169+
environment:
170+
- PUID=1000
171+
- PGID=1000
172+
- TZ=Etc/UTC
173+
volumes:
174+
- /etc/localtime:/etc/localtime:ro
175+
- /docker/appdata/sabnzbd:/config
176+
- /data/usenet:/data/usenet:rw
177+
ports:
178+
- 8080:8080
179+
restart: unless-stopped
180+
181+
arch-qbittorrentvpn:
182+
image: binhex/arch-qbittorrentvpn:4.6.5-1-03
183+
container_name: qbittorrentvpn
184+
volumes:
185+
- '/docker/appdata/qbitty:/config'
186+
- '/data/torrents/:/data/torrents'
187+
- '/etc/localtime:/etc/localtime:ro'
188+
ports:
189+
- '49550:49550'
190+
- '49551:8118'
191+
environment:
192+
- VPN_ENABLED=yes
193+
- VPN_PROV=protonvpn
194+
- VPN_CLIENT=wireguard
195+
- VPN_USER=mafyuh+pmp
196+
- VPN_PASS=
197+
- STRICT_PORT_FORWARD=yes
198+
- LAN_NETWORK=$LAN_NETWORK
199+
- ENABLE_PRIVOXY=yes
200+
- PUID=1000
201+
- PGID=1000
202+
- WEBUI_PORT=49550
203+
- UMASK=1000
204+
- DEBUG=false
205+
cap_add:
206+
- NET_ADMIN
207+
sysctls:
208+
- net.ipv4.conf.all.src_valid_mark=1
209+
privileged: true
210+
network_mode: bridge
211+
restart: unless-stopped
212+
213+
flaresolverr:
214+
image: ghcr.io/flaresolverr/flaresolverr:v3.3.21
215+
container_name: flaresolverr
216+
ports:
217+
- '8191:8191'
218+
environment:
219+
- LOG_LEVEL=info
220+
restart: unless-stopped
165221

166222
networks:
167223
default:

0 commit comments

Comments
 (0)
Please sign in to comment.