dastrasmue / rpi-pyload

Docker with payload for the Raspberry Pi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyLoad for Raspberry Pi (as Dock)

This is a fork of writl/pyload (https://github.com/obi12341/docker-pyload), which brings this Dock to the Raspberry Pi. It was already forked by githubato (https://github.com/githubato/dockerfile-pyload), but recent changes of writl were not included.

Introduction

pyLoad is a fast, lightweight and full featured download manager for many One-Click-Hoster, container formats like DLC, video sites or just plain http/ftp links. It aims for low hardware requirements and platform independence to be runnable on all kind of systems (desktop pc, netbook, NAS, router).

Despite its strict restriction it is packed full of features just like webinterface, captcha recognition, unrar and much more.

pyLoad is divided into core and clients, to make it easily remote accessible. Currently there are a webinterface, command line interface, and a GUI written in Qt.

Source official pyload

Install

Install is easy as all docker images

docker pull dastrasmue/rpi-pyload

Running

docker run -d -P dastrasmue/rpi-pyload

Configuration

You can link your Downloads to your host very easy like that:

docker run -d -v <host directoy>:/opt/pyload/Downloads -P dastrasmue/rpi-pyload

Notice to replace <host directory> with your directory path on the host. So if you want to store your Downloads in /tmp/Downloads then your command would look like this:

docker run -d -v /tmp/Downloads:/opt/pyload/Downloads -P dastrasmue/rpi-pyload

If you want to have your configuration persistent you have to link the configuration directory outside of the container. This can happen like this:

docker run -d -v <host directoy>:/opt/pyload/pyload-config -P dastrasmue/rpi-pyload

Example, if all possible config options are used:

docker run -d -p 8000:8000 -p 7227:7227 -v /opt/pyload/downloads:/opt/pyload/Downloads -v /opt/pyload/config:/opt/pyload/pyload-config --name pyload dastrasmue/rpi-pyload

Finally

After the docker has created you can login via the webinterface with:

USER=pyload
PASSWORD=pyload

About

Docker with payload for the Raspberry Pi


Languages

Language:Shell 100.0%