wxhere/bitcomet

By wxhere

Updated 19 days ago

Access the BitComet GUI through a VNC client or Web Page

Image
Networking
11

10K+

wxhere/bitcomet repository overview

Welcome to use Docker Edition of BitComet

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

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

Deploy Method 1: using docker-compose

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

services:
    sandbox:
        container_name: bitcomet
        image: wxhere/bitcomet:latest
        volumes:
            # mounts the host directory into the container to store config files
            - /docker/appdata/BitComet:/home/sandbox/.config/BitComet:rw
            # mounts a host directory into the container to store downloaded files
            - ~/Downloads:/home/sandbox/Downloads:rw
        ports:
            # VNC GUI port
            - 5900:5900
            # Web GUI port
            - 6080:80
            # BitTorrent ports
            - 6082:6082
            - 6082:6082/udp
        environment:
            - VNC_PASSWORD=123456
            - HTTP_PASSWORD=123456
            - USER=sandbox
            - PASSWORD=123456

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 GUI in your browser:

http://127.0.0.1:6080
username: sandbox
password: 123456

or connect to the VNC desktop with your VNC client:

port: 5900
username: sandbox
password: 123456

Step 4: click the BitComet icon in desktop to launch it.

Deploy Method 2: using Docker CLI

Step 1: pull docker image:

docker pull wxhere/bitcomet:latest

Step 2: create container and run:

docker run -d \
  --name=bitcomet\
  -e VNC_PASSWORD=123456 \
  -e HTTP_PASSWORD=123456 \
  -e USER=sandbox \
  -e PASSWORD=123456 \
  -p 5900:5900 \
  -p 6080:80 \
  -p 6882:6882 \
  -p 6882:6882/udp \
  -v /docker/appdata/BitComet:/home/sandbox/.config/BitComet:rw \
  -v ~/Downloads:/home/sandbox/Downloads:rw \
  --restart unless-stopped \
  wxhere/bitcomet:latest

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

Step 3: open webpage of BitComet GUI in your browser:

http://127.0.0.1:6080
username: sandbox
password: 123456

or connect to the VNC desktop with your VNC client:

port: 5900
username: sandbox
password: 123456

Step 4: click the BitComet icon in desktop to launch it.

Tag summary

Content type

Image

Digest

sha256:769c0a10f

Size

615.2 MB

Last updated

19 days ago

docker pull wxhere/bitcomet