1
0

replace rtorrent with qbittorrent

This commit is contained in:
2025-07-21 11:41:30 +02:00
parent 8d3fd1b6ac
commit 3214aad447
3 changed files with 33 additions and 28 deletions

View File

@ -192,32 +192,6 @@ services:
caddy.reverse_proxy: "{{ upstreams 9000 }}"
restart: unless-stopped
rtorrent:
image: binhex/arch-rtorrentvpn
container_name: rtorrent
volumes:
- "${DOCKER_STORAGE_PATH}/rtorrent/config:/config"
- "${DOCKER_STORAGE_PATH}/rtorrent/watch:/watch"
- ${STORAGE_PATH}/seed:/data
- /etc/localtime:/etc/localtime:ro
environment:
- PUID=${PUID}
- PGID=${PGID}
env_file:
- rtorrent.env
ports:
- "9080:9080"
- "9443:9443"
- "8118:8118"
- "6881:6881"
networks:
public:
ipv4_address: 192.168.240.9
labels:
caddy: torrent.${DOMAIN}
caddy.reverse_proxy: "{{ upstreams 9080 }}"
restart: unless-stopped
webhook:
image: ${REGISTRY_URL}/webhook
container_name: webhook
@ -616,6 +590,35 @@ services:
volumes:
- ${DOCKER_STORAGE_PATH}/vaultwarden:/data
restart: unless-stopped
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- WEBUI_PORT=${QBITTORRENT_WEBUI_PORT}
- TORRENTING_PORT=6881
- DOCKER_MODS=ghcr.io/vuetorrent/vuetorrent-lsio-mod|linuxserver/mods:universal-apprise
volumes:
- ${DOCKER_STORAGE_PATH}/qbittorrent/appdata:/config
- "${DOWNLOADS_PATH}/sabnzbd:/downloads"
- "${TORRENTS_SEED_PATH}:/seed"
- ${TORRENTS_WATCH_PATH}:/watch
- /etc/localtime:/etc/localtime:ro
networks:
public:
ipv4_address: 192.168.240.55
ports:
- ${QBITTORRENT_WEBUI_EXTERNAL_PORT}:${QBITTORRENT_WEBUI_INTERNAL_PORT}
- 6881:6881
- 6881:6881/udp
labels:
caddy: qbt.${DOMAIN}
caddy.reverse_proxy: "{{ upstreams $QBITTORRENT_WEBUI_INTERNAL_PORT }}"
restart: unless-stopped
networks: