Here is my docker-compose file (from qbittorrent - LinuxServer.io)
---
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1001
- PGID=100
- TZ=America/Chicago
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- CHANGE_TO_COMPOSE_DATA_PATH/qbittorrent/config:/config
- /srv/dev-disk-by-uuid-30ff5511-3b43-41cb-bd13-381d590402c5/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
Here is the log:
qbittorrent | [migrations] started
qbittorrent | [migrations] no migrations found
qbittorrent | ───────────────────────────────────────
qbittorrent |
qbittorrent | ██╗ ███████╗██╗ ██████╗
qbittorrent | ██║ ██╔════╝██║██╔═══██╗
qbittorrent | ██║ ███████╗██║██║ ██║
qbittorrent | ██║ ╚════██║██║██║ ██║
qbittorrent | ███████╗███████║██║╚██████╔╝
qbittorrent | ╚══════╝╚══════╝╚═╝ ╚═════╝
qbittorrent |
qbittorrent | Brought to you by linuxserver.io
qbittorrent | ───────────────────────────────────────
qbittorrent |
qbittorrent | To support LSIO projects visit:
qbittorrent | https://www.linuxserver.io/donate/
qbittorrent |
qbittorrent | ───────────────────────────────────────
qbittorrent | GID/UID
qbittorrent | ───────────────────────────────────────
qbittorrent |
qbittorrent | User UID: 1001
qbittorrent | User GID: 100
qbittorrent | ───────────────────────────────────────
qbittorrent | Linuxserver.io version: 4.6.5-r0-ls341
qbittorrent | Build-date: 2024-07-14T06:55:57+00:00
qbittorrent | ───────────────────────────────────────
qbittorrent |
qbittorrent | [custom-init] No custom files found, skipping...
qbittorrent | WebUI will be started shortly after internal preparations. Please wait...
qbittorrent |
qbittorrent | ******** Information ********
qbittorrent | To control qBittorrent, access the WebUI at: http://localhost:8080
qbittorrent |
qbittorrent | The WebUI administrator username is: admin
qbittorrent | The WebUI administrator password was not set. A temporary password is provided for this session: wvtvCISpf
qbittorrent | You should set your own password in program preferences.
qbittorrent | Connection to localhost (::1) 8080 port [tcp/http-alt] succeeded!
qbittorrent | [ls.io-init] done.
tested from commandline with: wget -qO- localhost:8080
Also tested via browers.
No bueno.
FYI:VERY new to this, my plex container runs fine, so if you can explain with a direct code example to resolve this I’d be most appreciative.
Thank you in advance!