Created
February 10, 2021 10:58
-
-
Save derinbay/8f5e4ee5105f3120ab8a6945ac176b14 to your computer and use it in GitHub Desktop.
qbittorrent stack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2.1" | |
services: | |
qbittorrent: | |
image: linuxserver/qbittorrent | |
container_name: qbittorrent | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=Europe/Istanbul | |
- WEBUI_PORT=8080 | |
volumes: | |
- /path/to/volume/Config/qBittorrent:/config | |
- /path/to/volume/Downloads:/downloads | |
ports: | |
- 6881:6881 | |
- 6881:6881/udp | |
- 8080:8080 | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment