https://github.com/evilfreelancer/docker-opentracker
Simple dockerized BitTorrent OpenTracker application.
https://github.com/evilfreelancer/docker-opentracker
Last synced: 5 months ago
JSON representation
Simple dockerized BitTorrent OpenTracker application.
- Host: GitHub
- URL: https://github.com/evilfreelancer/docker-opentracker
- Owner: EvilFreelancer
- Created: 2022-06-09T14:14:43.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-09T14:51:40.000Z (about 4 years ago)
- Last Synced: 2025-11-03T17:10:36.428Z (8 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenTracker in Docker
Simple dockerized BitTorrent [OpenTracker](https://erdgeist.org/arts/software/opentracker/) application.
## How to build and run
```shell
git clone https://github.com/EvilFreelancer/docker-opentracker.git
cd docker-opentracker
cp docker-compose.dist.yml docker-compose.yml
docker-compose build
docker-compose up -d
```
Your tracker will be available on http://localhost:6969
Announce address: http://localhost:6969/announce
Stats can be found here: http://localhost:6969/stats
## Configuration
Sample of configuration can be found [here](./opentracker.conf.sample).
For enabling it needs to modify your docker-compose.yml:
```yml
version: "2.4"
services:
opentracker:
command: ["-f", "/app/opentracker/opentracker.conf"]
build:
context: .
ports:
- "6969:6969"
- "6969:6969/udp"
volumes:
- ./opentracker.conf:/app/opentracker/opentracker.conf
```