auto backup 2026-07-28_23:10:01
This commit is contained in:
@@ -1,38 +1,31 @@
|
||||
services:
|
||||
wireguard:
|
||||
image: thrnz/docker-wireguard-pia:latest
|
||||
restart: unless-stopped
|
||||
gluetun:
|
||||
image: qmcgaw/gluetun
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
devices:
|
||||
- /dev/net/tun:/dev/net/tun
|
||||
sysctls:
|
||||
net.ipv4.conf.all.src_valid_mark: "1"
|
||||
- /dev/net/tun
|
||||
environment:
|
||||
LOC: belgium
|
||||
USER: ${PIA_USER}
|
||||
PASS: ${PIA_PASSWORD}
|
||||
KEEPALIVE: "25"
|
||||
PORT_FORWARDING: "1"
|
||||
PORT_PERSIST: "1"
|
||||
WG_FILES: "1"
|
||||
PORT_SCRIPT: /pia-shared/set_qbt_port.sh
|
||||
QBT_URL: http://127.0.0.1:8090
|
||||
QBT_USER: ${QBT_USER}
|
||||
QBT_PASS: ${QBT_PASS}
|
||||
- VPN_SERVICE_PROVIDER=private internet access
|
||||
- OPENVPN_USER=${PIA_USER}
|
||||
- OPENVPN_PASSWORD=${PIA_PASSWORD}
|
||||
- SERVER_REGIONS=Netherlands
|
||||
- VPN_PORT_FORWARDING=on
|
||||
- TZ=Europe/Paris
|
||||
volumes:
|
||||
- /home/docker/BitDen/pia-shared:/pia-shared
|
||||
- /home/docker/DenGate:/gluetun
|
||||
ports:
|
||||
- 8085:8090
|
||||
- 8787:8080
|
||||
- 9696:9696
|
||||
- 7878:7878
|
||||
- 8989:8989
|
||||
- 5055:5055
|
||||
- 8085:8090 # qbittorrent
|
||||
- 8787:8080 # neko
|
||||
- 52000-52100:52000-52100/udp
|
||||
- 9696:9696 # prowlarr
|
||||
- 7878:7878 # radarr
|
||||
- 8989:8989 # sonarr
|
||||
- 5055:5055 # seerr
|
||||
- 9117:9117
|
||||
- 8191:8191
|
||||
- 8265:8265
|
||||
- 8266:8266
|
||||
- 8265:8265 # tdarr
|
||||
- 8266:8266 # tdarr
|
||||
networks:
|
||||
tan-network:
|
||||
ipv4_address: 10.10.0.120
|
||||
@@ -40,80 +33,85 @@ services:
|
||||
- traefik.enable=true
|
||||
- traefik.docker.network=tan-network
|
||||
|
||||
# qbittorrent
|
||||
- traefik.http.routers.qbittorrent.rule=Host(`torrent.luckyden.org`)
|
||||
- traefik.http.routers.qbittorrent.entrypoints=websecure
|
||||
- traefik.http.routers.qbittorrent.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.qbittorrent.service=qbittorrent
|
||||
- traefik.http.services.qbittorrent.loadbalancer.server.port=8090
|
||||
|
||||
# neko
|
||||
- traefik.http.routers.neko.rule=Host(`neko.luckyden.org`)
|
||||
- traefik.http.routers.neko.entrypoints=websecure
|
||||
- traefik.http.routers.neko.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.neko.service=neko
|
||||
- traefik.http.services.neko.loadbalancer.server.port=8080
|
||||
|
||||
# prowlarr
|
||||
- traefik.http.routers.prowlarr.rule=Host(`prowlarr.luckyden.org`)
|
||||
- traefik.http.routers.prowlarr.entrypoints=websecure
|
||||
- traefik.http.routers.prowlarr.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.prowlarr.service=prowlarr
|
||||
- traefik.http.services.prowlarr.loadbalancer.server.port=9696
|
||||
|
||||
# radarr
|
||||
- traefik.http.routers.radarr.rule=Host(`radarr.luckyden.org`)
|
||||
- traefik.http.routers.radarr.entrypoints=websecure
|
||||
- traefik.http.routers.radarr.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.radarr.service=radarr
|
||||
- traefik.http.services.radarr.loadbalancer.server.port=7878
|
||||
|
||||
# sonarr
|
||||
- traefik.http.routers.sonarr.rule=Host(`sonarr.luckyden.org`)
|
||||
- traefik.http.routers.sonarr.entrypoints=websecure
|
||||
- traefik.http.routers.sonarr.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.sonarr.service=sonarr
|
||||
- traefik.http.services.sonarr.loadbalancer.server.port=8989
|
||||
|
||||
# seerr
|
||||
- traefik.http.routers.seerr.rule=Host(`jellyseerr.luckyden.org`)
|
||||
- traefik.http.routers.seerr.entrypoints=websecure
|
||||
- traefik.http.routers.seerr.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.seerr.service=seerr
|
||||
- traefik.http.services.seerr.loadbalancer.server.port=5055
|
||||
|
||||
# tdarr
|
||||
- traefik.http.routers.tdarr.rule=Host(`tdarr.luckyden.org`)
|
||||
- traefik.http.routers.tdarr.entrypoints=websecure
|
||||
- traefik.http.routers.tdarr.tls.certresolver=cloudflare
|
||||
- traefik.http.routers.tdarr.service=tdarr
|
||||
- traefik.http.services.tdarr.loadbalancer.server.port=8265
|
||||
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- wg show 2>/dev/null | grep -q interface
|
||||
interval: 10s
|
||||
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:9999"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
start_period: 90s
|
||||
retries: 12
|
||||
retries: 10
|
||||
|
||||
|
||||
qbittorrent:
|
||||
image: lscr.io/linuxserver/qbittorrent:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
- WEBUI_PORT=8090
|
||||
- DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent
|
||||
#- DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent
|
||||
volumes:
|
||||
- /home/docker/BitDen/config:/config
|
||||
- /mnt/bindmounts/multimedia/Downloads:/downloads
|
||||
- /home/docker/BitDen/pia-shared:/pia-shared
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
neko:
|
||||
image: ghcr.io/m1k1o/neko/firefox:latest
|
||||
restart: unless-stopped
|
||||
shm_size: 2gb
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
volumes:
|
||||
- /home/docker/BrowDen/firefox:/home/neko/.mozilla/firefox
|
||||
environment:
|
||||
@@ -123,13 +121,13 @@ services:
|
||||
- NEKO_MEMBER_MULTIUSER_USER_PASSWORD=${NEKO_USER_PASS}
|
||||
- NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD=${NEKO_ADMIN_PASS}
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
prowlarr:
|
||||
image: lscr.io/linuxserver/prowlarr:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
@@ -137,13 +135,13 @@ services:
|
||||
volumes:
|
||||
- /home/docker/ProwDen/config:/config
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
jackett:
|
||||
image: lscr.io/linuxserver/jackett:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- FLARESOLVERR_URL=http://127.0.0.1:8191
|
||||
- PUID=1000
|
||||
@@ -154,24 +152,24 @@ services:
|
||||
- /home/docker/ProwDen/jackett/config:/config
|
||||
- /home/docker/ProwDen/jackett/downloads:/downloads
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
flaresolverr:
|
||||
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- TZ=Europe/Paris
|
||||
- LOG_LEVEL=info
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
@@ -181,13 +179,13 @@ services:
|
||||
- /mnt/bindmounts/multimedia/Médias:/movies
|
||||
- /mnt/bindmounts/multimedia/Downloads:/downloads
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
sonarr:
|
||||
image: lscr.io/linuxserver/sonarr:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
@@ -197,27 +195,27 @@ services:
|
||||
- /mnt/bindmounts/multimedia/Médias:/tv
|
||||
- /mnt/bindmounts/multimedia/Downloads:/downloads
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
seerr:
|
||||
image: ghcr.io/seerr-team/seerr:latest
|
||||
restart: unless-stopped
|
||||
init: true
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
- TZ=Europe/Paris
|
||||
volumes:
|
||||
- /home/docker/DenRequest/config:/app/config
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
tdarr:
|
||||
image: ghcr.io/haveagitgat/tdarr:latest
|
||||
restart: unless-stopped
|
||||
network_mode: service:wireguard
|
||||
network_mode: service:gluetun
|
||||
environment:
|
||||
- TZ=Europe/Paris
|
||||
- PUID=1000
|
||||
@@ -248,9 +246,10 @@ services:
|
||||
devices:
|
||||
- /dev/dri:/dev/dri
|
||||
depends_on:
|
||||
wireguard:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
|
||||
|
||||
networks:
|
||||
tan-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user