├── .env ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── alpha.yaml │ ├── ci.yaml │ └── release.yaml ├── Dockerfile ├── LICENSE ├── Readme.md ├── docker-compose.yml ├── docker-stack.yml ├── entrypoint.sh └── manual_build ├── .env ├── Dockerfile ├── Readme.md ├── docker-compose.yml └── entrypoint.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: "https://www.qbittorrent.org/donate" 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/alpha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/.github/workflows/alpha.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/Readme.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/docker-stack.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /manual_build/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/manual_build/.env -------------------------------------------------------------------------------- /manual_build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/manual_build/Dockerfile -------------------------------------------------------------------------------- /manual_build/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/manual_build/Readme.md -------------------------------------------------------------------------------- /manual_build/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/manual_build/docker-compose.yml -------------------------------------------------------------------------------- /manual_build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbittorrent/docker-qbittorrent-nox/HEAD/manual_build/entrypoint.sh --------------------------------------------------------------------------------