docker-subsonic/Dockerfile
2024-05-21 20:42:52 -04:00

42 lines
1.5 KiB
Docker

FROM r.batts.cloud/debian:bookworm as extract
COPY jre-8u411-linux-x64.tar.gz /
RUN mkdir -p /usr/java &&\
tar -C /usr/java -xvf jre-8u411-linux-x64.tar.gz
FROM r.batts.cloud/debian:bookworm
ENV SUBSONIC_VERSION 6.1.6
ENV JAVA_HOME /usr/java/jre1.8.0_411
ENV PATH $JAVA_HOME/bin:$PATH
LABEL description="Subsonic media streamer"
LABEL version="$SUBSONIC_VERSION"
## TODO redo with https://github.com/airsonic-advanced/airsonic-advanced/releases/tag/v10.6.0
RUN apt update &&\
apt -y dist-upgrade &&\
apt -y install --no-install-recommends ffmpeg lame &&\
apt clean -y &&\
rm -rf /var/lib/apt/lists/* &&\
mkdir -p /opt/data/transcode /opt/music/ /opt/playlist/ /opt/podcast/ &&\
ln -s /usr/bin/lame /opt/data/transcode/lame &&\
ln -s /usr/bin/avconv /opt/data/transcode/ffmpeg &&\
curl -o subsonic.tar.gz -SL "https://sourceforge.net/projects/subsonic/files/subsonic/$SUBSONIC_VERSION/subsonic-$SUBSONIC_VERSION-standalone.tar.gz/download" &&\
mkdir -p /opt/subsonic &&\
tar -C /opt/subsonic -xf subsonic.tar.gz &&\
rm /subsonic.tar.gz
COPY --from=extract /usr/java/jre1.8.0_411 /usr/java/jre1.8.0_411
EXPOSE 4040
EXPOSE 4043
VOLUME /opt/data
VOLUME /opt/music/
VOLUME /opt/playlist/
VOLUME /opt/podcast/
ENV SUBSONIC_HOME /opt/data
ENV SUBSONIC_PORT 4040
ENV SUBSONIC_HTTPS_PORT 0
ENV SUBSONIC_MAX_MEMORY 250
ENV SUBSONIC_DEFAULT_MUSIC_FOLDER /opt/music
ENV SUBSONIC_DEFAULT_PODCAST_FOLDER /opt/podcast
ENV SUBSONIC_DEFAULT_PLAYLIST_FOLDER /opt/playlist
ENV HOME /opt/data
CMD /opt/subsonic/subsonic.sh && tail -f /opt/data/subsonic_sh.log