blob: 003bfbfa218fe50c747fd2ad4a36a01884a83b4d (
plain)
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
|
captainVersion: 4
services:
$$cap_appname:
image: lscr.io/linuxserver/pyload-ng:$$cap_pyload_version
environment:
TZ: $$cap_tz
PUID: $$cap_puid
PGID: $$cap_guid
hostname: $$cap_appname.$$cap_root_domain
volumes:
- $$cap_appname-config:/config
- $$cap_path_to_downloads:/downloads
ports:
- 9666:9666
caproverExtra:
containerHttpPort: '8000'
caproverOneClickApp:
variables:
- id: $$cap_pyload_version
label: Pyload Version
defaultValue: 0.5.0
description: Check out their Docker page for the valid tags https://github.com/linuxserver/docker-pyload-ng/pkgs/container/pyload-ng
validRegex: /^([^\s^\/])+$/
- id: $$cap_tz
label: Time Zone
defaultValue: Europe/Brussels
description: Get yours from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
validRegex: /.{1,}/
- id: $$cap_path_to_downloads
label: Path to downloads folder
defaultValue: pyload-downloads
description: Path to pictures folder where u want to save the downloaded files. You can mention an existing directory here too. Eg. /home/user/downloads/
validRegex: '/.{1,}/'
- id: $$cap_puid
label: User ID
defaultValue: '1000'
description: User ID that the process uses, run (id $user) in your instance to see the id
validRegex: /.{1,}/
- id: $$cap_guid
label: Group ID
defaultValue: '1000'
description: Group ID that the process uses, run (id $user) in your instance to see the id
validRegex: /.{1,}/
instructions:
start: >-
Pyload is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.
end: |-
Access the web interface at http://$$cap_appname.$$cap_root_domain the default login is: username - pyload & password - pyload
For general usage please see the pyLoad wiki (https://github.com/pyload/pyload/wiki)
displayName: Pyload
isOfficial: true
description: The free and open-source Download Manager written in pure Python
documentation: Taken from https://docs.linuxserver.io/images/docker-pyload-ng/ Official Website is https://pyload.net/
|