From 0acb5ed8bfd993d7193b88ea8e5ece5372f382b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sun, 2 Aug 2026 05:44:31 +0200 Subject: [PATCH] Add qbittorrent service configuration to Docker Compose --- qbittorrent.compose.yaml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 qbittorrent.compose.yaml diff --git a/qbittorrent.compose.yaml b/qbittorrent.compose.yaml new file mode 100644 index 0000000..168a3c2 --- /dev/null +++ b/qbittorrent.compose.yaml @@ -0,0 +1,38 @@ +--- +services: + qbittorrent: + image: ghcr.io/qbittorrent/docker-qbittorrent-nox:latest + container_name: qbittorrent + read_only: true + restart: unless-stopped + stop_grace_period: 30m + user: 1000:1000 + tty: true + environment: + - TZ=Europe/Stockholm + - QBT_LEGAL_NOTICE=confirm + - QBT_VERSION=latest + - QBT_WEBUI_PORT=8080 + - QBT_TORRENTING_PORT=22799 + - UMASK=022 # 022: allow all users to read/write files + expose: + # For web interface + - "8080" + ports: + # For bittorrent traffic + - 22799:22799/tcp + - 22799:22799/udp + tmpfs: + - /tmp + volumes: + - /mnt/Docker/Data/qBittorrent:/config + - /mnt/fourteen/Data/Torrents:/downloads + + +networks: + qbittorrent: + internal: true + name: qbittorrent + + default: + driver: bridge