Sign inSign up

rob2600/bttracker

By rob2600

Updated about 6 years ago

A bittorrent tracker ready to spin up, no configuration required.

Image
0

162

rob2600/bttracker repository overview

Hello!

This image pulls the latest bittorrent-tracker from npm and the latest alpine image. No configuration is required, server will run on udp, http, and websocket on port 8000. It's recommended that you load balance or nginx proxy to the http port.

Example Kubernetes configurations:

pod.yaml

apiVersion: apps/v1
kind: Deployment
metadata:
name: bttracker
spec:
selector:
    matchLabels:
    app: bttracker
template:
    metadata:
    labels:
        app: bttracker
    spec:
    containers:
    - name: bttracker
        image: rob2600/bttracker:latest

service.yaml

apiVersion: v1
kind: Service
metadata:
name: bttracker-ingress
spec:
type: LoadBalancer
ports:
- port: 80
    targetPort: 8000
    name: http
selector:
    app: bttracker

Tag summary

Content type

Image

Digest

Size

22.3 MB

Last updated

about 6 years ago

docker pull rob2600/bttracker