Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jothi-prasath/docker-qbittorrent-enhanced-edition
qBittorrent Enhanced Edition Docker
https://github.com/jothi-prasath/docker-qbittorrent-enhanced-edition
Last synced: about 2 months ago
JSON representation
qBittorrent Enhanced Edition Docker
- Host: GitHub
- URL: https://github.com/jothi-prasath/docker-qbittorrent-enhanced-edition
- Owner: jothi-prasath
- License: mit
- Created: 2024-05-09T12:27:58.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-09-11T03:30:02.000Z (5 months ago)
- Last Synced: 2024-09-11T09:20:21.484Z (5 months ago)
- Language: Python
- Homepage:
- Size: 60.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# qBittorrent Enhanced Edition
![logo](https://upload.wikimedia.org/wikipedia/commons/thumb/6/66/New_qBittorrent_Logo.svg/240px-New_qBittorrent_Logo.svg.png)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/jothi-prasath/docker-qbittorrent-enhanced-edition/Auto%20Build%20Docker%20Image.yml)](https://github.com/jothi-prasath/docker-qbittorrent-enhanced-edition/actions/workflows/Auto%20Build%20Docker%20Image.yml)
[![Docker Image Version](https://img.shields.io/docker/v/jothiprasath2/qbittorrent-enhanced-edition)](https://hub.docker.com/r/jothiprasath2/qbittorrent-enhanced-edition)Github: https://github.com/jothi-prasath/docker-qbittorrent-enhanced-edition
Docker Hub: https://hub.docker.com/r/jothiprasath2/qbittorrent-enhanced-edition## Features
* Auto Ban Xunlei, QQ, Baidu, Xfplay, DLBT and Offline downloader
* Auto Ban Unknown Peer from China Option (Default: OFF)
* Auto Update Public Trackers List (Default: OFF)
* Auto Ban BitTorrent Media Player Peer Option (Default: OFF)
* Peer whitelist/blacklist
* Dark themeThanks to the following projects:
* https://github.com/qbittorrent/qBittorrent
* https://github.com/c0re100/qBittorrent-Enhanced-Edition
* https://github.com/ngosang/trackerslist
* https://github.com/SuperNG6/Docker-qBittorrent-Enhanced-Edition## Architecture
| Architecture | Tag |
| ------------ | -------------- |
| x86-64 | latest |
| arm64 | latest |## Usage
### docker-compose```
---
services:
qbittorrentee:
image: jothiprasath2/qbittorrent-enhanced-edition:latest
container_name: qbittorrent-enhanced-edition
environment:
- PUID=1000
- PGID=100
- TZ=Asia/Kolkata
volumes:
- /path/to/appdata/config:/config
- /path/to/downloads:/downloads
ports:
- 6881:6881
- 6881:6881/udp
- 8080:8080
restart: unless-stopped
```### docker cli
```
docker run -d \
--name=qbittorrent-enhanced-edition \
-e WEBUIPORT=8080 \
-e PUID=1000 \
-e PGID=100 \
-e TZ=Asia/Kolkata \
-p 6881:6881 \
-p 6881:6881/udp \
-p 8080:8080 \
-v /path/to/appdata/config:/config \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
jothiprasath2/qbittorrent-enhanced-edition:latest
```## Parameters
| Parameter | Function |
| ------------ | -------------- |
| -p 8080 | WebUI |
| -p 6881 | tcp connection port |
| -p 6881/udp | udp connection port |
| -e TZ=Asia/Kolkata | specify a timezone to use |