This image will soon be cleaned, please move to linuxserver/pyload or linuxserver/pyload-ng
500K+
A docker container based on linuxserver/baseimage and running pyLoad
Installation procedure adapted from obi12341/docker-pyload
$ docker create \
--name pyLoad \
-p 8000:8000 \
-e PUID=<UID> -e PGID=<GID> \
-e TZ=<YourRegion>/<YourCapital> \
-v </path/to/your/downloads>:/downloads \
-v </path/to/your/configs>:/config \
cobraeti/pyload
From LinuxServer.io description:
The PGID and PUID values set the user / group you'd like your container to 'run as' to the host OS. This can be a user you've created or even root (not recommended). Part of what makes our containers work so well is by allowing you to specify your own PUID and PGID. This avoids nasty permissions errors with relation to data volumes (-v flags). When an application is installed on the host OS it is normally added to the common group called users, Docker apps due to the nature of the technology can't be added to this group. So we added this feature to let you easily choose when running your containers.
The default port for webUI is 8000 and must stay like that. If you need to use another one, only change the port mapping when creating the container (ex: $ docker create --name pyLoad -p <NEW PORT>:8000 ...)
adminpyloadYou can (and should :yum:) change the password through the webUI (Top right corner > Administrate > User > change).
If you want to create users, you need to run the following command on the docker host:
$ docker exec -it pyLoad /bin/bash
When you get the container's promp (something like root@263c2ec0c11a:/#), run the following:
# sudo -u abc -g abc /usr/bin/python /opt/pyload/pyLoadCore.py -u
And then follow the CLI prompts to manage users.
Notes:
The default folder for downloads is /downloadsand must stay like that. If you need to change the destination folder for downloads, only change the volume mapping when creating the container (eg: $ docker create --name pyLoad -v <NEW FOLDER>:/downloads ...)
If you are planning to activate this option, just add a port mapping for the dedicated port with -p 7227:7227 and when pyload is up, just activate the remote control in the dedicated config menu (Top right corner > Config tab > General tab > Menu tab > Remote > Activated > on)
The container was packed with all requirements (obviously except for GUI...), so you just have to add a volume mapping to a folder containing your certificate and key with -v </path/to/your/ssl/folder>:/ssl and configure SSL in the dedicated config menu (Top right corner > Config tab > General tab > Menu tab > SSL)
Content type
Image
Digest
Size
328.1 MB
Last updated
over 7 years ago
Requires Docker Desktop 4.37.1 or later.