minimages/bittorrent-tracker

By minimages

Updated about 2 months ago

Minimal multiarch bittorrent-tracker Alpine docker image, updated by GitLab CI/CD scheduling

Image
Networking
Message queues
Web servers
3

10K+

minimages/bittorrent-tracker repository overview

pipeline status

Source codes | Maintainer - Jaryl Chng

Environment variables:

EnvironmentDefault valueDescription
PORT8000Port to host tracker
HTTP1Enable HTTP on '/announce' and '/scrape' endpoints
UDP1Enable UDP
WS1Enable WebSocket
STATS1Enable stats on '/stats' and '/stats.json' endpoints
INTERVAL600000Client announce interval (ms)
TRUST_PROXY0Trust 'x-forwarded-for' header from reverse proxy
QUIET1Show only errors
SILENT0Show no output at all (overrides QUIET)

Deploying

Terminal

docker run -d \
    --name bittorrent-tracker \
    -e PORT=8000 \
    -e HTTP=1 \
    -e UDP=1 \
    -e WS=1 \
    -e STATS=1 \
    -e INTERVAL=600000 \
    -e TRUST_PROXY=0 \
    -e QUIET=1 \
    -e SILENT=0 \
    -p 8000:8000 \
    --restart unless-stopped \
    minimages/bittorrent-tracker

Docker-compose

bittorrent-tracker:
    image: minimages/bittorrent-tracker
    ports:
        - "8000:8000"
    environment:
        - PORT=8000
        - HTTP=1
        - UDP=1
        - WS=1
        - STATS=1
        - INTERVAL=600000
        - TRUST_PROXY=0
        - QUIET=1
        - SILENT=0
    restart: unless-stopped

Tag summary

Content type

Image

Digest

sha256:427fc9f4b

Size

44.8 MB

Last updated

about 2 months ago

docker pull minimages/bittorrent-tracker