linuxserver / docker-nzbget

GNU General Public License v3.0
150 stars 83 forks source link

cannot install ffmpeg #20

Closed hroman73 closed 8 years ago

hroman73 commented 8 years ago

I am setting this up new and trying to get the postprocess scripts to run but need to install ffmpeg and ffprobe but cannot.

zaggash commented 8 years ago

Hello,

You can use the variable -e ADVANCED_SCRIPT:='true' ans then set a script named userscript.sh in your /config folder wit hthe following content :


#!/bin/bash
apt-get install -y ffmpeg
hroman73 commented 8 years ago

that worked thanks

RaymondMouthaan commented 4 years ago

An update to this is:

Create a script userscript.sh in your /config/custom-cont-init.d with the following content:

#!/bin/bash
apk add --no-cache ffmpeg