wxhere/bitcomet-webui

By wxhere

Updated about 2 months ago

Access the BitComet Web UI through any browser.

Image
Networking
6

10K+

wxhere/bitcomet-webui repository overview

Welcome to use the Docker Edition of BitComet Web UI

List of docker images: https://hub.docker.com/r/wxhere/bitcomet-webui/tags

FYI: The GUI edition of BitComet docker images can be found at: https://hub.docker.com/r/wxhere/bitcomet

Deploy Method 1: using docker-compose

Step 1: save docker-compose.yml to your local system:

services:
    sandbox:
        container_name: bitcomet-webui
        image: wxhere/bitcomet-webui:latest
        ulimits:
          nofile:
            soft: 65536
            hard: 65536
        volumes:
            # mounts the host directory into the container to store config files
            - /docker/appdata/BitComet:/root/.config/BitComet:rw
            # mounts a host directory into the container to store downloaded files
            - ~/Downloads:/root/Downloads:rw
        ports:
            # BitComet WebUI port
            - 6080:80
            # BitTorrent ports
            - 6082:6082
            - 6082:6082/udp
        environment:
            - BITCOMET_WEBUI_PORT=8080
            - BITCOMET_BT_PORT=6082
            - WEBUI_USERNAME=test
            - WEBUI_PASSWORD=test

Note: Please change the username, password and port mappings according to your own needs

Step 2: pull docker image, create container and run:

docker-compose -f docker-compose.yml up

Step 3: open webpage of BitComet Web UI in your browser:

http://127.0.0.1:6080
username: test
password: test

Deploy Method 2: using Docker CLI

Step 1: pull docker image:

docker pull wxhere/bitcomet-webui:latest

Step 2: create container and run:

docker run -d \
  --name=bitcomet-webui\
  --ulimit nofile=65536:65536 \
  -e BITCOMET_WEBUI_PORT=8080 \
  -e BITCOMET_BT_PORT=6082 \
  -e WEBUI_USERNAME=test \
  -e WEBUI_PASSWORD=test \
  -p 6080:80 \
  -p 6082:6082 \
  -p 6082:6082/udp \
  -v /docker/appdata/BitComet:/root/.config/BitComet:rw \
  -v ~/Downloads:/root/Downloads:rw \
  --restart unless-stopped \
  wxhere/bitcomet-webui:latest

Note: Please change the username, password, and port mappings according to your own needs

Step 3: open webpage of BitComet Web UI in your browser:

http://127.0.0.1:6080
username: test
password: test

Tag summary

Content type

Image

Digest

sha256:080c3e8a0

Size

50.7 MB

Last updated

about 2 months ago

docker pull wxhere/bitcomet-webui