2024.04.08 已经修改为qbitorrent
compose文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| version: "3" services: qbittorrent: container_name: qbittorrent environment: - PUID=1000 - PGID=1000 - TZ=Asia/Shanghai - WEBUI_PORT=8080 ports: - 9091:8080 - 6881:6881 - 6881:6881/udp volumes: - ./config:/config - /home/Disk/Synology/qbittorrent:/downloads restart: unless-stopped image: lscr.io/linuxserver/qbittorrent:latest labels: - "com.centurylinklabs.watchtower.enable=true" network_mode: bridge
|