This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
readme-vars.yml
66 lines (55 loc) · 2.75 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
# project information
project_name: pyload
project_url: "https://pyload.net/"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/pyload-icon.png"
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
project_deprecation_status: true
project_deprecation_message: |
We recommend our new pyload-ng image instead:
https://github.com/linuxserver/docker-pyload-ng/
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# development version
development_versions: true
development_versions_items:
- { tag: "latest", desc: "Stable releases from Pyload" }
- { tag: "ng", desc: "Development releases from Pyload-ng (currently alpha)" }
# container parameters
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/pyload/config", desc: "pyLoad Configuration and files database" }
- { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Destination of pyLoad downloads" }
param_usage_include_ports: true
param_ports:
- { external_port: "8000", internal_port: "8000", port_desc: "Allows HTTP access to the application" }
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
# optional params
opt_param_usage_include_ports: true
opt_param_ports:
- { external_port: "7227", internal_port: "7227", port_desc: "pyLoad control port" }
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Access the web interface at `http://your-ip:8000` the default login is:
username - **admin**
password - **password**
For the `ng` tag, the default user/pass are `pyload/pyload`.
For general usage please see the pyLoad wiki [here](https://github.com/pyload/pyload/wiki) .
# changelog
changelogs:
- { date: "25.01.22:", desc: "Deprecate." }
- { date: "23.02.21:", desc: "Add Python plugin `passlib`." }
- { date: "16.02.21:", desc: "Publish `ng` tag for pyload-ng (currently alpha)." }
- { date: "04.11.20:", desc: "Rebase to alpine 3.11." }
- { date: "18.10.20:", desc: "Chown app folder to fix plugin updater." }
- { date: "18.07.19:", desc: "Add ffmpeg for plugins the do video processing." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "08.06.19:", desc: "Initial release." }