parent
ab975fecd5
commit
3d9bbc6d81
@ -0,0 +1,62 @@
|
||||
FROM linuxserver/sabnzbd:unstable
|
||||
LABEL maintainer="RandomNinjaAtk"
|
||||
|
||||
ENV TITLE="SABnzbd Extended"
|
||||
ENV VERSION="1.0.4"
|
||||
ENV SMA_PATH /usr/local/sma
|
||||
ENV VIDEO_LANG eng
|
||||
ENV VIDEO_SMA FALSE
|
||||
ENV VIDEO_SMA_TAGGING FALSE
|
||||
ENV AUDIO_VERIFY TRUE
|
||||
ENV AUDIO_FORMAT FLAC
|
||||
ENV AUDIO_BITRATE 320
|
||||
ENV AUDIO_REPLAYGAIN FALSE
|
||||
ENV AUDIO_DSFA TRUE
|
||||
ENV AUDIO_DSFAS 150M
|
||||
|
||||
RUN \
|
||||
echo "************ install dependencies ************" && \
|
||||
apt-get update && \
|
||||
apt-get install -y software-properties-common && \
|
||||
add-apt-repository ppa:jonathonf/ffmpeg-4 -y && \
|
||||
echo "************ install and update packages ************" && \
|
||||
apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y \
|
||||
mkvtoolnix \
|
||||
mp3val \
|
||||
flac \
|
||||
opus-tools \
|
||||
jq \
|
||||
git \
|
||||
ffmpeg \
|
||||
python3 \
|
||||
python3-pip \
|
||||
ffmpeg && \
|
||||
apt-get purge --auto-remove -y && \
|
||||
apt-get clean && \
|
||||
echo "************ setup SMA ************" && \
|
||||
echo "************ setup directory ************" && \
|
||||
mkdir -p ${SMA_PATH} && \
|
||||
echo "************ download repo ************" && \
|
||||
git clone https://github.com/mdhiggins/sickbeard_mp4_automator.git ${SMA_PATH} && \
|
||||
mkdir -p ${SMA_PATH}/config && \
|
||||
echo "************ create logging file ************" && \
|
||||
mkdir -p ${SMA_PATH}/config && \
|
||||
touch ${SMA_PATH}/config/sma.log && \
|
||||
chgrp users ${SMA_PATH}/config/sma.log && \
|
||||
chmod g+w ${SMA_PATH}/config/sma.log && \
|
||||
echo "************ install pip dependencies ************" && \
|
||||
python3 -m pip install --user --upgrade pip && \
|
||||
pip3 install -r ${SMA_PATH}/setup/requirements.txt
|
||||
|
||||
|
||||
# copy local files
|
||||
COPY root/ /
|
||||
|
||||
# set work directory
|
||||
WORKDIR /config
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 8080 9090
|
||||
VOLUME /config
|
Loading…
Reference in new issue