diff --git a/12_torrent/docker-compose.yml b/12_torrent/docker-compose.yml index dec8728..d8624a4 100644 --- a/12_torrent/docker-compose.yml +++ b/12_torrent/docker-compose.yml @@ -3,21 +3,17 @@ services: image: qmcgaw/gluetun cap_add: - NET_ADMIN - devices: - /dev/net/tun - environment: - VPN_SERVICE_PROVIDER=private internet access - OPENVPN_USER=${OPENVPN_USER} - OPENVPN_PASSWORD=${OPENVPN_PASSWORD} - SERVER_REGIONS=Netherlands - - PORT_FORWARDING=on + - VPN_PORT_FORWARDING=on - TZ=Europe/Paris - volumes: - /home/docker/DenGate:/gluetun - ports: - 8085:8090 # qbittorrent - 8787:8080 # neko @@ -30,12 +26,9 @@ services: - 8191:8191 - 8265:8265 # tdarr - 8266:8266 # tdarr - networks: - vpn-network: tan-network: ipv4_address: 10.10.0.120 - labels: - traefik.enable=true - traefik.docker.network=tan-network @@ -90,172 +83,139 @@ services: - traefik.http.services.tdarr.loadbalancer.server.port=8265 restart: unless-stopped - healthcheck: - test: ["CMD", "ping", "-c", "1", "1.1.1.1"] + test: ["CMD", "wget", "-qO-", "http://127.0.0.1:9999"] interval: 5s - timeout: 10s - retries: 3 + timeout: 5s + retries: 10 qbittorrent: image: lscr.io/linuxserver/qbittorrent:latest restart: unless-stopped network_mode: service:gluetun - environment: - PUID=1000 - PGID=1000 - TZ=Europe/Paris - WEBUI_PORT=8090 - DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent - volumes: - /home/docker/BitDen/config:/config - /mnt/bindmounts/multimedia/Downloads:/downloads - depends_on: gluetun: condition: service_healthy - neko: image: ghcr.io/m1k1o/neko/firefox:latest restart: unless-stopped shm_size: 2gb network_mode: service:gluetun - volumes: - /home/docker/BrowDen/firefox:/home/neko/.mozilla/firefox - 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} - depends_on: gluetun: condition: service_healthy - prowlarr: image: lscr.io/linuxserver/prowlarr:latest restart: unless-stopped network_mode: service:gluetun - environment: - PUID=1000 - PGID=1000 - TZ=Europe/Paris - volumes: - /home/docker/ProwDen/config:/config - depends_on: gluetun: condition: service_healthy - jackett: image: lscr.io/linuxserver/jackett:latest restart: unless-stopped network_mode: service:gluetun - environment: - FLARESOLVERR_URL=http://127.0.0.1:8191 - PUID=1000 - PGID=1000 - TZ=Europe/Paris - AUTO_UPDATE=true - volumes: - /home/docker/ProwDen/jackett/config:/config - /home/docker/ProwDen/jackett/downloads:/downloads - depends_on: gluetun: condition: service_healthy - flaresolverr: image: ghcr.io/flaresolverr/flaresolverr:latest restart: unless-stopped network_mode: service:gluetun - environment: - TZ=Europe/Paris - LOG_LEVEL=info - depends_on: gluetun: condition: service_healthy - radarr: image: lscr.io/linuxserver/radarr:latest restart: unless-stopped network_mode: service:gluetun - environment: - PUID=1000 - PGID=1000 - TZ=Europe/Paris - volumes: - /home/docker/RadDen/config:/config - /mnt/bindmounts/multimedia/Médias:/movies - /mnt/bindmounts/multimedia/Downloads:/downloads - depends_on: gluetun: condition: service_healthy - sonarr: image: lscr.io/linuxserver/sonarr:latest restart: unless-stopped network_mode: service:gluetun - environment: - PUID=1000 - PGID=1000 - TZ=Europe/Paris - volumes: - /home/docker/SonDen/config:/config - /mnt/bindmounts/multimedia/Médias:/tv - /mnt/bindmounts/multimedia/Downloads:/downloads - depends_on: gluetun: condition: service_healthy - seerr: image: ghcr.io/seerr-team/seerr:latest restart: unless-stopped init: true network_mode: service:gluetun - environment: - LOG_LEVEL=debug - TZ=Europe/Paris - volumes: - /home/docker/DenRequest/config:/app/config - depends_on: gluetun: condition: service_healthy - tdarr: image: ghcr.io/haveagitgat/tdarr:latest restart: unless-stopped network_mode: service:gluetun - environment: - TZ=Europe/Paris - PUID=1000 @@ -273,7 +233,6 @@ services: - nodeName=RenDen_node - NVIDIA_DRIVER_CAPABILITIES=all - NVIDIA_VISIBLE_DEVICES=all - volumes: - /home/docker/RenDen/server:/app/server - /home/docker/RenDen/configs:/app/configs @@ -284,17 +243,13 @@ services: - /mnt/bindmounts/multimedia/Médias/Animations:/media/animations - /mnt/bindmounts/multimedia/Médias/Animes Jeunesse:/media/animes jeunesse - /tmp/tdarr/transcodes:/temp - devices: - /dev/dri:/dev/dri - depends_on: gluetun: condition: service_healthy networks: - vpn-network: - name: vpn-network tan-network: - external: true + external: true \ No newline at end of file