gists/qbittorrent

By gists

Updated 7 months ago

[unofficial] qBittorrent-NoX torrent client based on alpine

Image
29

5M+

gists/qbittorrent repository overview

Dockerfile https://github.com/vgist/dockerfiles/tree/master/qbittorrent

Environment:
EnvironmentDefault value
PEER_PORT6881
WEB_PORT8080
UID1000
GID1000
username & password
  • username: admin
  • password: randomly generated every start, use docker logs qbittorrent to see temporary password
Volume
  • /data
Creating an instance:
docker run \
    -d \
    --name qbittorrent \
    -p 6881:6881 \
    -p 6881:6881/udp \
    -p 8080:8080 \
    -v /path/data:/data \
    gists/qbittorrent
Compose example:
qbittorrent:
    image: gists/qbittorrent
    ports:
        - "8080:8080"
        - "6881:6881"
        - "6881:6881/udp"
    volumes:
        - /path/data:/data
    environment:
        - UID=1000
        - GID=1000
    restart: always

Tag summary

Content type

Image

Digest

sha256:1b535e1c1

Size

170.3 MB

Last updated

7 months ago

docker pull gists/qbittorrent