Skip to content

add ffmpeg and click'n'load port #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
ffmpeg \
libjpeg-turbo \
p7zip \
py3-pip \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
ffmpeg \
libjpeg-turbo \
p7zip \
py3-pip \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
ffmpeg \
libjpeg-turbo \
p7zip \
py3-pip \
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ services:
- /path/to/downloads:/downloads
ports:
- 8000:8000
- 9666:9666 #optional
restart: unless-stopped
```

Expand All @@ -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 \
Expand All @@ -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 |
Expand Down Expand Up @@ -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.
5 changes: 3 additions & 2 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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." }