{"id":17069266,"url":"https://github.com/mogeko/docker-qbittorrent","last_synced_at":"2026-01-20T15:07:32.639Z","repository":{"id":39877094,"uuid":"427093203","full_name":"mogeko/docker-qbittorrent","owner":"mogeko","description":"Docker image for qBittorrent. ","archived":false,"fork":false,"pushed_at":"2023-01-30T20:06:52.000Z","size":120,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T23:41:12.853Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mogeko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-11T17:52:07.000Z","updated_at":"2021-12-10T03:53:42.000Z","dependencies_parsed_at":"2023-02-16T11:15:48.777Z","dependency_job_id":null,"html_url":"https://github.com/mogeko/docker-qbittorrent","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mogeko/docker-qbittorrent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-qbittorrent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-qbittorrent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-qbittorrent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-qbittorrent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mogeko","download_url":"https://codeload.github.com/mogeko/docker-qbittorrent/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-qbittorrent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28606139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T14:45:23.139Z","status":"ssl_error","status_checked_at":"2026-01-20T14:44:16.929Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T11:16:44.232Z","updated_at":"2026-01-20T15:07:32.622Z","avatar_url":"https://github.com/mogeko.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-qbittorrent\n\n[![ci_icon]][ci_link] [![image_size]][docker_link] [![image_ver]][docker_link] [![unstable]][docker_link]\n\nDocker image for qBittorrent. \n\n- Tiny size\n- Enable rootless[^1]\n- Enable `QBT_*` options[^2]\n- Keep updating\n- Compile by `clang`\n\n## Usage\n\nPull this image:\n\n```shell\ndocker pull ghcr.io/mogeko/qbittorrent\n```\n\nRun with docker cli:\n\n```shell\ndocker run -d \\\n  --name qbittorrent \\\n  --user 1000:100 `#optional` \\\n  -e QBT_WEBUI_PORT=8080 \\\n  -p 6881:6881 \\\n  -p 6881:6881/udp \\\n  -p 8080:8080 \\\n  -v /path/to/config:/config \\\n  -v /path/to/downloads:/downloads \\\n  --restart unless-stopped \\\n  ghcr.io/mogeko/qbittorrent\n```\n\nRun with [docker-compose]:\n\n```yml\n---\nversion: 2.1\nservices:\n  qbittorrent:\n    image: ghcr.io/mogeko/qbittorrent\n    container_name: qbittorrent\n    user: 1000:100 #optional\n    environment:\n      - QBT_WEBUI_PORT=8080\n    volumes:\n      - /path/to/config:/config\n      - /path/to/downloads:/downloads\n    ports:\n      - 6881:6881\n      - 6881:6881/udp\n      - 8080:8080\n    restart: unless-stopped\n```\n\n## Parameters\n\nContainer images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `\u003cexternal\u003e:\u003cinternal\u003e` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.\n\n| Parameter                | Function                      |\n|--------------------------|-------------------------------|\n| `-p 6881`                | tcp connection port           |\n| `-p 6881/udp`            | udp connection port           |\n| `-p 8080`                | The Web UI port               |\n| `-e QBT_WEBUI_PORT=8080` | Change the Web UI port        |\n| `-v /config`             | Save the configuration files  |\n| `-v /downloads`          | Location of downloads on disk |\n\nThe `qbittorrent-nox`'s options may be supplied via environment variables[^2]. For option named 'parameter-name', environment variable name is `QBT_PARAMETER_NAME` (in uppercase, `-` replaced with `_`). To pass flag values, set the variable to `1` or `TRUE`. Here is an example we already in used: `-e QBT_WEBUI_PORT=8080`.\n\nMore help message about `qbittorrent-nox`, you can get via:\n\n```shell\ndocker run -it ghcr.io/mogeko/qbittorrent --help\n```\n\n## License\n\nThe code in this project is released under the [GPL-3.0 License][license].\n\n\n\u003c!-- footnote --\u003e\n\n[^1]: This image should be able to work with [podman], but it has not been tested.\n[^2]: The option `QBT_PROFILE` does not support.\n\n\u003c!-- badge --\u003e\n\n[ci_icon]: https://github.com/mogeko/docker-qbittorrent/actions/workflows/auto-update.yml/badge.svg\n[ci_link]: https://github.com/mogeko/docker-qbittorrent/actions/workflows/auto-update.yml\n[image_size]: https://img.shields.io/docker/image-size/mogeko/qbittorrent/latest?logo=docker\n[image_ver]: https://img.shields.io/docker/v/mogeko/qbittorrent/latest?label=latest\u0026logo=docker\n[unstable]: https://img.shields.io/docker/v/mogeko/qbittorrent?label=edge\u0026logo=docker\n[docker_link]: https://hub.docker.com/r/mogeko/qbittorrent\n\n\u003c!-- links --\u003e\n\n[docker-compose]: https://docs.docker.com/compose\n[license]: https://github.com/mogeko/docker-qbittorrent/blob/master/LICENSE\n[podman]: https://podman.io\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmogeko%2Fdocker-qbittorrent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmogeko%2Fdocker-qbittorrent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmogeko%2Fdocker-qbittorrent/lists"}