From 58325c00f914543754b2084123f1d6ccf47ce873 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 2 Feb 2022 19:54:58 -0500 Subject: [PATCH] add ffmpeg and click'n'load port --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + Dockerfile.armhf | 1 + README.md | 4 ++++ readme-vars.yml | 5 +++-- 5 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0bd8973..3ba5e86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ RUN \ echo "**** install packages ****" && \ apk add --no-cache \ curl \ + ffmpeg \ libjpeg-turbo \ p7zip \ py3-pip \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 10be7fe..6599174 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -23,6 +23,7 @@ RUN \ echo "**** install packages ****" && \ apk add --no-cache \ curl \ + ffmpeg \ libjpeg-turbo \ p7zip \ py3-pip \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index ffab12e..e7164c4 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -23,6 +23,7 @@ RUN \ echo "**** install packages ****" && \ apk add --no-cache \ curl \ + ffmpeg \ libjpeg-turbo \ p7zip \ py3-pip \ diff --git a/README.md b/README.md index 79691df..0299fb7 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ services: - /path/to/downloads:/downloads ports: - 8000:8000 + - 9666:9666 #optional restart: unless-stopped ``` @@ -109,6 +110,7 @@ docker run -d \ -e PGID=1000 \ -e TZ=Europe/London \ -p 8000:8000 \ + -p 9666:9666 `#optional` \ -v /path/to/appdata/config:/config \ -v /path/to/downloads:/downloads \ --restart unless-stopped \ @@ -122,6 +124,7 @@ Container images are configured using parameters passed at runtime (such as thos | Parameter | Function | | :----: | --- | | `-p 8000` | Allows HTTP access to the application | +| `-p 9666` | Click'n'Load port. | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-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 ## Versions +* **02.02.22:** - Add ffmpeg for the Youtube plugin. * **24.01.22:** - Replace unrar with p7zip. * **24.01.22:** - Initial release. diff --git a/readme-vars.yml b/readme-vars.yml index 98912e6..3940c7c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -34,9 +34,9 @@ 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: false +opt_param_usage_include_ports: true opt_param_ports: - - { external_port: "7227", internal_port: "7227", port_desc: "pyLoad control port" } + - { external_port: "9666", internal_port: "9666", port_desc: "Click'n'Load port." } # application setup block @@ -50,5 +50,6 @@ app_setup_block: | # changelog changelogs: + - { date: "02.02.22:", desc: "Add ffmpeg for the Youtube plugin." } - { date: "24.01.22:", desc: "Replace unrar with p7zip." } - { date: "24.01.22:", desc: "Initial release." }