Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 480 Bytes

Docker.md

File metadata and controls

17 lines (11 loc) · 480 Bytes

Docker

docker pull asapach/peerflix-server

Make sure that you have write permissions to your destination directory /tmp/torrent-stream:

mkdir /tmp/torrent-stream
chmod a+rw /tmp/torrent-stream/

docker run -p 9000:9000 -p 6881:6881 -p 6881:6881/udp -d -v /tmp/torrent-stream:/tmp/torrent-stream asapach/peerflix-server

Or

docker run -p 9000:9000 -p 6881:6881 -p 6881:6881/udp --rm -v /tmp/torrent-stream:/tmp/torrent-stream asapach/peerflix-server