Skip to content

Commit 6cba05e

Browse files
committed
fix(media): 🐛 restore qBittorrent torrent port mappings
1 parent 0a0ecfd commit 6cba05e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

media/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This stack requires a `.env` file for configuration. A complete and recommended
5050
| **Sonarr** | `8989` | `http://sonarr:8989` | TV show management. |
5151
| **Radarr** | `7878` | `http://radarr:7878` | Movie management. |
5252
| **Prowlarr** | `9696` | `http://prowlarr:9696` | Indexer management. |
53-
| **qBittorrent** | `8003` | `http://qbittorrent:8003` | Torrent client and web UI. |
53+
| **qBittorrent** | `6881`, `6881/udp` | `http://qbittorrent:8003` | Torrent client and web UI; torrent ports are mapped on host. |
5454
| **Jellyfin** | `8096` | `http://jellyfin:8096` | Media streaming. |
5555
| **Seerr** | `5055` | `http://seerr:5055` | Media requests. |
5656
| **Cinerr** | `8080` | `http://cinerr:8080` | Media library browser. |
@@ -59,7 +59,7 @@ This stack requires a `.env` file for configuration. A complete and recommended
5959
| **Byparr** | `8191` | `http://byparr:8191` | Cloudflare bypass. |
6060
| **AW Downloader** | `6547` | `http://aw-downloader:6547` | Anime downloading and management backend. |
6161

62-
> **Note:** All services are meant to be reached through `npm_network`; there are no host mappings in this stack.
62+
> **Note:** Most services are meant to be reached through `npm_network`; qBittorrent also publishes its torrent ports on the host for peer connectivity.
6363
6464
## Container Images
6565

media/compose.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ services:
167167
image: linuxserver/qbittorrent:latest
168168
container_name: qbittorrent
169169
restart: always
170+
ports:
171+
- 6881:6881 # Torrent (TCP, external mapping)
172+
- 6881:6881/udp # Torrent (UDP, external mapping)
170173
expose:
171174
- 8003 # Web UI (internal, for reverse proxy or internal access)
172175
- 6881 # Torrent (TCP, internal, for internal container communication)

0 commit comments

Comments
 (0)