ronnieonthehub/peerflix-server

By ronnieonthehub

Updated almost 3 years ago

Peerflix server with web interface. Weekly builds with latest version of peerflix

Image

305

peerflix-server

NPM VersionNPM DownloadsDocker Build StatusDocker StarsDocker Pulls

logo

Streaming torrent client for node.js with web ui. Based on server application of peerflix from asapach. Since docker image was not being updated to latest version of peerflix, the docker image from onisuly is used as a basis.

screen capture

Based on torrent-stream, inspired by peerflix.

This Dockerfile build an image for peerflix-server with password protection capability.

Quick Start

docker run -d --name peerflix-server \
-p 9000:9000 \
-v /your/path/to/torrent-stream:/mnt/torrents/torrent-stream \
ronnieonthehub/peerflix-server

Enable Password Protection

docker run -d --name peerflix-server \
-p 9000:9000 \
-e SECURE=true \
-e USERNAME=your_name \
-e PASSWORD=your_password \
-v /your/path/to/torrent-stream:/mnt/torrents/torrent-stream \
ronnieonthehub/peerflix-server

If you want to add multiple users, your can generate .htpasswd file here and mount it to your container.

docker run -d --name peerflix-server \
-p 9000:9000 \
-v /your/path/to/.htpasswd:/etc/squid/users \
-v /your/path/to/torrent-stream:/mnt/torrents/torrent-stream \
ronnieonthehub/peerflix-server

Read Peerflix Server Readme for more information.

Docker Pull Command

docker pull ronnieonthehub/peerflix-server