{"id":42180395,"url":"https://github.com/obi12341/docker-pyload","last_synced_at":"2026-01-26T22:03:50.741Z","repository":{"id":22324019,"uuid":"25659422","full_name":"obi12341/docker-pyload","owner":"obi12341","description":"Docker with pyload","archived":false,"fork":false,"pushed_at":"2022-03-04T19:20:35.000Z","size":48,"stargazers_count":26,"open_issues_count":1,"forks_count":28,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-10-27T04:38:34.162Z","etag":null,"topics":["docker","pyload","shell","webinterface"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/obi12341.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-23T21:50:14.000Z","updated_at":"2025-01-02T14:22:11.000Z","dependencies_parsed_at":"2022-08-21T03:00:29.328Z","dependency_job_id":null,"html_url":"https://github.com/obi12341/docker-pyload","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/obi12341/docker-pyload","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obi12341%2Fdocker-pyload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obi12341%2Fdocker-pyload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obi12341%2Fdocker-pyload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obi12341%2Fdocker-pyload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/obi12341","download_url":"https://codeload.github.com/obi12341/docker-pyload/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obi12341%2Fdocker-pyload/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28789721,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","pyload","shell","webinterface"],"created_at":"2026-01-26T22:02:38.120Z","updated_at":"2026-01-26T22:03:50.723Z","avatar_url":"https://github.com/obi12341.png","language":"Dockerfile","readme":"PyLoad\n=========\n[![Build Status](https://travis-ci.org/obi12341/docker-pyload.svg?branch=master)](https://travis-ci.org/obi12341/docker-pyload)\n\n**NOTICE**: If pyload is not able to update plugins, try to use `latest` tag\n\nIntroduction\n----\npyLoad 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).\n\nDespite its strict restriction it is packed full of features just like webinterface, captcha recognition, unrar and much more.\n\npyLoad 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.\n\nSource [official pyload](https://pyload.net/).\n\nInstall\n----\nInstall is easy as all docker images\n\n```sh\ndocker pull mobilistics/pyload:latest\n```\n\nRunning\n----\n\n```sh\ndocker run -d -P mobilistics/pyload:latest\n```\n\nConfiguration\n----\nYou can link your Downloads to your host very easy like that:\n\n```sh\ndocker run -d -v \u003chost directoy\u003e:/opt/pyload/Downloads -P mobilistics/pyload:latest\n```\nNotice to replace ```\u003chost directory\u003e``` 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:\n\n```sh\ndocker run -d -v /tmp/Downloads:/opt/pyload/Downloads -P mobilistics/pyload:latest\n```\nIf you want to have your configuration persistent you have to link the configuration directory outside of the container. This can happen like this:\n\n```sh\ndocker run -d -v \u003chost directoy\u003e:/opt/pyload/pyload-config -P mobilistics/pyload:latest\n```\n\nBy default, pyload will be run as root, and will download files with uid 0 and gid 0. If you want to change this behavior, you can specify the UID and GID that will be used for the downloaded files by using ENV VARS\n\nDocker run command\n-----\n```sh\ndocker \\\n    run \\\n    -d \\\n    -v \u003chost download directory\u003e:/opt/pyload/Downloads \\\n    -v \u003chost config directoy\u003e:/opt/pyload/pyload-config \\\n    -e UID=\u003cuid\u003e \\\n    -e GID=\u003cgid\u003e \\\n    -P \\\n    mobilistics/pyload:latest\n```\nSample compose file\n-----\n```yaml\nversion: \"2\"\nservices:\n    pyload:\n      image: mobilistics/pyload:latest\n      container_name: pyload\n      ports:\n        - 8000:8000\n      environment:\n        - UID=1000\n        - GID=1000\n      volumes:\n        - /path/to/config:/opt/pyload/pyload-config\n        - /path/to/data:/opt/pyload/Downloads\n\n```\n\n\nFinally\n----\nWhen the container has been created you can login via the webinterface at **\\\u003chost-ip\u003e:8000** with:\n\n```sh\nUSER=pyload\nPASSWORD=pyload\n```\n\n\n[official pyload]:http://pyload.org/\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobi12341%2Fdocker-pyload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobi12341%2Fdocker-pyload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobi12341%2Fdocker-pyload/lists"}