Files
infra/12_torrent/docker-compose.yml
T

260 lines
6.0 KiB
YAML
Raw Normal View History

2026-03-21 14:12:55 +01:00
services:
2026-07-08 10:30:01 +02:00
glueten:
2026-07-08 10:10:01 +02:00
image: qmcgaw/gluetun
2026-03-21 14:12:55 +01:00
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun
environment:
2026-07-08 10:10:01 +02:00
- VPN_SERVICE_PROVIDER=private internet access
- OPENVPN_USER=${OPENVPN_USER}
- OPENVPN_PASSWORD=${OPENVPN_PASSWORD}
- SERVER_REGIONS=Netherlands
- PORT_FORWARDING=on
2026-03-21 14:12:55 +01:00
- TZ=Europe/Paris
volumes:
2026-07-08 10:10:01 +02:00
- /home/docker/DenGate:/gluetun
2026-03-21 14:12:55 +01:00
ports:
- 8085:8090
- 52000-52100:52000-52100/udp
networks:
vpn-network:
tan-network:
ipv4_address: 10.10.0.120
labels:
- traefik.enable=true
2026-04-24 23:10:01 +02:00
- traefik.docker.network=tan-network
2026-03-21 14:12:55 +01:00
# 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
2026-07-08 10:10:01 +02:00
restart: unless-stopped
2026-03-21 14:12:55 +01:00
healthcheck:
test: ["CMD", "ping", "-c", "1", "1.1.1.1"]
interval: 1m
timeout: 10s
retries: 3
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
network_mode: service:glueten
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
- WEBUI_PORT=8090
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/BitDen/config:/config
- /mnt/bindmounts/multimedia/Downloads:/downloads
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
depends_on:
2026-07-08 10:30:01 +02:00
glueten:
2026-03-21 14:12:55 +01:00
condition: service_healthy
neko:
image: ghcr.io/m1k1o/neko/firefox:latest
restart: unless-stopped
shm_size: 2gb
2026-07-08 10:30:01 +02:00
network_mode: service:glueten
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/BrowDen/firefox:/home/neko/.mozilla/firefox
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- NEKO_WEBRTC_EPR=52000-52100
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_NAT1TO1=192.168.0.9
- NEKO_MEMBER_MULTIUSER_USER_PASSWORD=${NEKO_USER_PASS}
- NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD=${NEKO_ADMIN_PASS}
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
depends_on:
2026-07-08 10:30:01 +02:00
glueten:
2026-03-21 14:12:55 +01:00
condition: service_healthy
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.121
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/ProwDen/config:/config
2026-07-08 10:10:01 +02:00
2026-07-08 10:30:01 +02:00
labels:
- traefik.enable=true
- traefik.docker.network=tan-network
- traefik.http.routers.prowlarr.rule=Host(`prowlarr.luckyden.org`)
- traefik.http.routers.prowlarr.entrypoints=websecure
- traefik.http.routers.prowlarr.tls.certresolver=cloudflare
- traefik.http.services.prowlarr.loadbalancer.server.port=9696
2026-03-21 14:12:55 +01:00
jackett:
image: lscr.io/linuxserver/jackett:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.122
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
2026-07-08 10:30:01 +02:00
- FLARESOLVERR_URL=http://flaresolverr:8191
2026-03-21 14:12:55 +01:00
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/ProwDen/jackett/config:/config
- /home/docker/ProwDen/jackett/downloads:/downloads
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.123
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- TZ=Europe/Paris
- LOG_LEVEL=info
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
radarr:
image: lscr.io/linuxserver/radarr:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.124
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/RadDen/config:/config
- /mnt/bindmounts/multimedia/Médias:/movies
- /mnt/bindmounts/multimedia/Downloads:/downloads
2026-07-08 10:10:01 +02:00
2026-07-08 10:30:01 +02:00
labels:
- traefik.enable=true
- traefik.http.routers.radarr.rule=Host(`radarr.luckyden.org`)
- traefik.http.routers.radarr.entrypoints=websecure
- traefik.http.routers.radarr.tls.certresolver=cloudflare
- traefik.http.services.radarr.loadbalancer.server.port=7878
2026-03-21 14:12:55 +01:00
sonarr:
image: lscr.io/linuxserver/sonarr:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.125
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/SonDen/config:/config
- /mnt/bindmounts/multimedia/Médias:/tv
- /mnt/bindmounts/multimedia/Downloads:/downloads
2026-07-08 10:10:01 +02:00
2026-07-08 10:30:01 +02:00
labels:
- traefik.enable=true
- traefik.http.routers.sonarr.rule=Host(`sonarr.luckyden.org`)
- traefik.http.routers.sonarr.entrypoints=websecure
- traefik.http.routers.sonarr.tls.certresolver=cloudflare
- traefik.http.services.sonarr.loadbalancer.server.port=8989
2026-03-21 14:12:55 +01:00
seerr:
image: ghcr.io/seerr-team/seerr:latest
restart: unless-stopped
init: true
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.126
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- LOG_LEVEL=debug
- TZ=Europe/Paris
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/DenRequest/config:/app/config
2026-07-08 10:10:01 +02:00
2026-07-08 10:30:01 +02:00
labels:
- traefik.enable=true
- traefik.http.routers.seerr.rule=Host(`jellyseerr.luckyden.org`)
- traefik.http.routers.seerr.entrypoints=websecure
- traefik.http.routers.seerr.tls.certresolver=cloudflare
- traefik.http.services.seerr.loadbalancer.server.port=5055
2026-03-21 14:12:55 +01:00
tdarr:
image: ghcr.io/haveagitgat/tdarr:latest
restart: unless-stopped
2026-07-08 10:30:01 +02:00
networks:
tan-network:
ipv4_address: 10.10.0.127
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
environment:
- TZ=Europe/Paris
- PUID=1000
- PGID=1000
- UMASK_SET=002
- serverIP=0.0.0.0
- serverPort=8266
- webUIPort=8265
- auth=true
- authSecretKey=${RENDEN_SECRET_KEY}
- apiKey=${RENDEN_API_KEY}
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
volumes:
- /home/docker/RenDen/server:/app/server
- /home/docker/RenDen/configs:/app/configs
- /home/docker/RenDen/logs:/app/logs
2026-07-08 10:30:01 +02:00
- /mnt/bindmounts/multimedia:/media
2026-03-21 14:12:55 +01:00
- /tmp/tdarr/transcodes:/temp
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
devices:
- /dev/dri:/dev/dri
2026-07-08 10:10:01 +02:00
2026-03-21 14:12:55 +01:00
networks:
vpn-network:
name: vpn-network
tan-network:
external: true