File tree Expand file tree Collapse file tree 5 files changed +10
-2
lines changed Expand file tree Collapse file tree 5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 23
23
echo "**** install packages ****" && \
24
24
apk add --no-cache \
25
25
curl \
26
+ ffmpeg \
26
27
libjpeg-turbo \
27
28
p7zip \
28
29
py3-pip \
Original file line number Diff line number Diff line change 23
23
echo "**** install packages ****" && \
24
24
apk add --no-cache \
25
25
curl \
26
+ ffmpeg \
26
27
libjpeg-turbo \
27
28
p7zip \
28
29
py3-pip \
Original file line number Diff line number Diff line change 23
23
echo "**** install packages ****" && \
24
24
apk add --no-cache \
25
25
curl \
26
+ ffmpeg \
26
27
libjpeg-turbo \
27
28
p7zip \
28
29
py3-pip \
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ services:
97
97
- /path/to/downloads:/downloads
98
98
ports :
99
99
- 8000:8000
100
+ - 9666:9666 # optional
100
101
restart : unless-stopped
101
102
` ` `
102
103
@@ -109,6 +110,7 @@ docker run -d \
109
110
-e PGID=1000 \
110
111
-e TZ=Europe/London \
111
112
-p 8000:8000 \
113
+ -p 9666:9666 `#optional` \
112
114
-v /path/to/appdata/config:/config \
113
115
-v /path/to/downloads:/downloads \
114
116
--restart unless-stopped \
@@ -122,6 +124,7 @@ Container images are configured using parameters passed at runtime (such as thos
122
124
| Parameter | Function |
123
125
| :----: | --- |
124
126
| ` -p 8000 ` | Allows HTTP access to the application |
127
+ | ` -p 9666 ` | Click'n'Load port. |
125
128
| ` -e PUID=1000 ` | for UserID - see below for explanation |
126
129
| ` -e PGID=1000 ` | for GroupID - see below for explanation |
127
130
| ` -e TZ=Europe/London ` | Specify a timezone to use EG Europe/London |
@@ -237,5 +240,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
237
240
238
241
## Versions
239
242
243
+ * ** 02.02.22:** - Add ffmpeg for the Youtube plugin.
240
244
* ** 24.01.22:** - Replace unrar with p7zip.
241
245
* ** 24.01.22:** - Initial release.
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ param_env_vars:
34
34
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
35
35
36
36
# optional params
37
- opt_param_usage_include_ports : false
37
+ opt_param_usage_include_ports : true
38
38
opt_param_ports :
39
- - { external_port: "7227 ", internal_port: "7227 ", port_desc: "pyLoad control port" }
39
+ - { external_port: "9666 ", internal_port: "9666 ", port_desc: "Click'n'Load port. " }
40
40
41
41
42
42
# application setup block
@@ -50,5 +50,6 @@ app_setup_block: |
50
50
51
51
# changelog
52
52
changelogs :
53
+ - { date: "02.02.22:", desc: "Add ffmpeg for the Youtube plugin." }
53
54
- { date: "24.01.22:", desc: "Replace unrar with p7zip." }
54
55
- { date: "24.01.22:", desc: "Initial release." }
You can’t perform that action at this time.
0 commit comments