jarylc/qbittorrent

By jarylc

Updated 4 days ago

qBittorrent-nox specially built with latest libtorrent on Alpine Linux (optimized gists/qbittorrent)

Image
Networking
Web servers
Content management system
0

100K+

jarylc/qbittorrent repository overview

pipeline status

Source codes | Maintainer - Jaryl Chng

Forked from vgist/dockerfiles.

Environment variables:

EnvironmentDefault value
PEER_PORT6881
WEB_PORT8080
UID1000
GID1000

Default username & password

  • username: admin
  • password: adminadmin

Volumes

  • /data - qBittorrent configuration and data

Deploying

Terminal

docker run -d \
    --name qbittorrent \
    -e UID=1000 \
    -e GID=1000 \
    -e PEER_PORT=6881 \
    -e WEB_PORT=6880 \
    -p 6881:6881 \
    -p 6881:6881/udp \
    -p 8080:8080 \
    -v /path/data:/data \
    --restart unless-stopped \
    minimages/qbittorrent

Docker-compose

qbittorrent:
    image: minimages/qbittorrent
    ports:
        - "8080:8080"
        - "6881:6881"
        - "6881:6881/udp"
    volumes:
        - /path/data:/data
    environment:
        - UID=1000
        - GID=1000
        - PEER_PORT=6881
        - WEB_PORT=8080
    restart: unless-stopped

Tag summary

Content type

Image

Digest

sha256:165933e9d

Size

47.6 MB

Last updated

4 days ago

docker pull jarylc/qbittorrent