因為本機就可以安裝qbittorrent-nox,不需要再透過Docker隔離相關的服務
而且實測透過docker也沒有比較好的效率
所以,先將Compose相關服務先備份出來
之後會實際安裝qbittorrent-nox來提供服務
—
version: “2”
services:
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent
environment:
– PUID=1000
– PGID=100
– TZ=Asia/Taipei
– UMASK_SET=022
– WEBUI_PORT=8081
volumes:
– /srv/dev-disk-by-uuid-a99e708b-e287-49af-99d5-d4647a2841dd/Docker/qBittorrent/config:/config
– /srv/dev-disk-by-uuid-a99e708b-e287-49af-99d5-d4647a2841dd/Download/qBittorrent:/downloads
ports:
– 6881:6881
– 6881:6881/udp
– 8081:8081
restart: unless-stopped
可以改的部份TimeZone
– TZ=Asia/Taipei
預設的 WEBUI Port
– WEBUI_PORT=8081
Docker Configure路徑
– /srv/dev-disk-by-uuid-a99e708b-e287-49af-99d5-d4647a2841dd/Docker/qBittorrent/config:/config
Docker Download路徑
– /srv/dev-disk-by-uuid-a99e708b-e287-49af-99d5-d4647a2841dd/Download/qBittorrent:/downloads
再來就是內外映射的port修改
隨機文章
- 敗師學藝的民視新聞 (2012-03-09)
- 放棄PhotoPrism 改用 immich (2024-10-26)
- Caddy Server / NGINX reverse Proxy 初測心得 (2024-12-28)
- 修改 Ubuntu / Debian 程式在X-Window 視窗下顯示的名稱 (2016-08-03)
- 匯入MySQL資料需要耐心 (2014-12-01)