File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 echo "**** install packages ****" && \
2525 apk add --no-cache \
2626 curl \
27+ ffmpeg \
2728 libjpeg-turbo \
2829 p7zip \
2930 py3-pip \
Original file line number Diff line number Diff line change 2424 echo "**** install packages ****" && \
2525 apk add --no-cache \
2626 curl \
27+ ffmpeg \
2728 libjpeg-turbo \
2829 p7zip \
2930 py3-pip \
Original file line number Diff line number Diff line change 2424 echo "**** install packages ****" && \
2525 apk add --no-cache \
2626 curl \
27+ ffmpeg \
2728 libjpeg-turbo \
2829 p7zip \
2930 py3-pip \
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ services:
9797 - /path/to/downloads:/downloads
9898 ports :
9999 - 8000:8000
100+ - 9666:9666 # optional
100101 restart : unless-stopped
101102` ` `
102103
@@ -109,6 +110,7 @@ docker run -d \
109110 -e PGID=1000 \
110111 -e TZ=Europe/London \
111112 -p 8000:8000 \
113+ -p 9666:9666 `#optional` \
112114 -v /path/to/appdata/config:/config \
113115 -v /path/to/downloads:/downloads \
114116 --restart unless-stopped \
@@ -122,6 +124,7 @@ Container images are configured using parameters passed at runtime (such as thos
122124| Parameter | Function |
123125| :----: | --- |
124126| ` -p 8000 ` | Allows HTTP access to the application |
127+ | ` -p 9666 ` | Click'n'Load port. |
125128| ` -e PUID=1000 ` | for UserID - see below for explanation |
126129| ` -e PGID=1000 ` | for GroupID - see below for explanation |
127130| ` -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
237240
238241## Versions
239242
243+ * ** 02.02.22:** - Add ffmpeg for the Youtube plugin.
240244* ** 24.01.22:** - Replace unrar with p7zip.
241245* ** 24.01.22:** - Initial release.
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ param_env_vars:
3434 - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
3535
3636# optional params
37- opt_param_usage_include_ports : false
37+ opt_param_usage_include_ports : true
3838opt_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. " }
4040
4141
4242# application setup block
@@ -50,5 +50,6 @@ app_setup_block: |
5050
5151# changelog
5252changelogs :
53+ - { date: "02.02.22:", desc: "Add ffmpeg for the Youtube plugin." }
5354 - { date: "24.01.22:", desc: "Replace unrar with p7zip." }
5455 - { date: "24.01.22:", desc: "Initial release." }
You can’t perform that action at this time.
0 commit comments