@@ -6,33 +6,28 @@ project_url: "https://pyload.net/"
6
6
project_logo : " https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/pyload-logo.png"
7
7
project_blurb : " [pyLoad]({{ 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."
8
8
project_lsio_github_repo_url : " https://github.com/linuxserver/docker-{{ project_name }}"
9
-
10
9
# supported architectures
11
10
available_architectures :
12
- - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
13
- - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
14
-
11
+ - {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
12
+ - {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
15
13
# development version
16
14
development_versions : true
17
15
development_versions_items :
18
- - { tag: "latest", desc: "Stable releases from pyLoad Next" }
19
- - { tag: "develop", desc: "Releases from pyload Next develop branch" }
20
-
16
+ - {tag: "latest", desc: "Stable releases from pyLoad Next"}
17
+ - {tag: "develop", desc: "Releases from pyload Next develop branch"}
21
18
# container parameters
22
19
param_container_name : " {{ project_name }}"
23
20
param_usage_include_vols : true
24
21
param_volumes :
25
- - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" }
26
- - { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Destination of pyLoad downloads" }
22
+ - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files"}
23
+ - {vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Destination of pyLoad downloads"}
27
24
param_usage_include_ports : true
28
25
param_ports :
29
- - { external_port: "8000", internal_port: "8000", port_desc: "Allows HTTP access to the application" }
30
-
26
+ - {external_port: "8000", internal_port: "8000", port_desc: "Allows HTTP access to the application"}
31
27
# optional params
32
28
opt_param_usage_include_ports : true
33
29
opt_param_ports :
34
- - { external_port: "9666", internal_port: "9666", port_desc: "Click'n'Load port." }
35
-
30
+ - {external_port: "9666", internal_port: "9666", port_desc: "Click'n'Load port."}
36
31
# application setup block
37
32
app_setup_block_enabled : true
38
33
app_setup_block : |
@@ -41,17 +36,59 @@ app_setup_block: |
41
36
password - **pyload**
42
37
43
38
For general usage please see the pyLoad wiki [here](https://github.com/pyload/pyload/wiki) .
44
-
39
+ # init diagram
40
+ init_diagram : |
41
+ "pyload-ng:latest": {
42
+ docker-mods
43
+ base {
44
+ fix-attr +\nlegacy cont-init
45
+ }
46
+ docker-mods -> base
47
+ legacy-services
48
+ custom services
49
+ init-services -> legacy-services
50
+ init-services -> custom services
51
+ custom services -> legacy-services
52
+ legacy-services -> ci-service-check
53
+ init-migrations -> init-adduser
54
+ init-os-end -> init-config
55
+ init-config -> init-config-end
56
+ init-pyload-config -> init-config-end
57
+ init-os-end -> init-crontab-config
58
+ init-mods-end -> init-custom-files
59
+ base -> init-envfile
60
+ base -> init-migrations
61
+ base -> init-mods
62
+ init-config-end -> init-mods
63
+ init-mods -> init-mods-end
64
+ init-mods-package-install -> init-mods-end
65
+ init-mods -> init-mods-package-install
66
+ base -> init-os-end
67
+ init-adduser -> init-os-end
68
+ init-envfile -> init-os-end
69
+ init-migrations -> init-os-end
70
+ init-config -> init-pyload-config
71
+ init-custom-files -> init-services
72
+ init-mods-end -> init-services
73
+ init-services -> svc-cron
74
+ svc-cron -> legacy-services
75
+ init-services -> svc-pyload
76
+ svc-pyload -> legacy-services
77
+ }
78
+ Base Images: {
79
+ "baseimage-alpine:3.19"
80
+ }
81
+ "pyload-ng:latest" <- Base Images
45
82
# changelog
46
83
changelogs :
47
- - { date: "20.07.24:", desc: "Revert to Alpine 3.19 due to inconsistent upstream addon support for Python 3.12."}
48
- - { date: "27.06.24:", desc: "Rebase to Alpine 3.20."}
49
- - { date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
50
- - { date: "08.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
51
- - { date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
52
- - { date: "01.06.23:", desc: "Replace p7zip with 7zip, add unrar." }
53
- - { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
54
- - { date: "02.02.22:", desc: "Rebase master to alpine 3.17." }
55
- - { date: "02.02.22:", desc: "Add ffmpeg for the Youtube plugin." }
56
- - { date: "24.01.22:", desc: "Replace unrar with p7zip." }
57
- - { date: "24.01.22:", desc: "Initial release." }
84
+ - {date: "20.07.24:", desc: "Revert to Alpine 3.19 due to inconsistent upstream addon support for Python 3.12."}
85
+ - {date: "27.06.24:", desc: "Rebase to Alpine 3.20."}
86
+ - {date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
87
+ - {date: "08.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
88
+ - {date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
89
+ - {date: "01.06.23:", desc: "Replace p7zip with 7zip, add unrar."}
90
+ - {date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf."}
91
+ - {date: "02.02.22:", desc: "Rebase master to alpine 3.17."}
92
+ - {date: "02.02.22:", desc: "Add ffmpeg for the Youtube plugin."}
93
+ - {date: "24.01.22:", desc: "Replace unrar with p7zip."}
94
+ - {date: "24.01.22:", desc: "Initial release."}
0 commit comments