Skip to content

Instantly share code, notes, and snippets.

@magicstone1412
Created November 17, 2024 10:00
Show Gist options
  • Save magicstone1412/138199579ed32eeb88bb38fed46db97e to your computer and use it in GitHub Desktop.
Save magicstone1412/138199579ed32eeb88bb38fed46db97e to your computer and use it in GitHub Desktop.
OVM qbittorrent docker compose file
---
services:
---
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1001
- PGID=100
- TZ=${TZ}
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- /config/qbittorrent:/config
- /Z/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
@magicstone1412
Copy link
Author

Command to find 1st time login password:

docker logs qbittorrent

Results:

******** Information ********
To control qBittorrent, access the WebUI at: http://localhost:8080
The WebUI administrator username is: admin
The WebUI administrator password was not set. A temporary password is provided for this session: WY15hJrZ8
You should set your own password in program preferences.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment