A bittorrent tracker ready to spin up, no configuration required.
162
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.
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
Content type
Image
Digest
Size
22.3 MB
Last updated
about 6 years ago
docker pull rob2600/bttracker