This commit is contained in:
Ash Leece 2024-01-04 00:51:26 +00:00
commit 051f2707bc
2 changed files with 11 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM node:latest
RUN npm install -g bittorrent-tracker
CMD [ "bittorrent-tracker", "--trust-proxy" ]

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
version: '3'
services:
bittorrent-tracker:
build: .
image: bittorrent-tracker
ports:
- 8000:8000
restart: unless-stopped