30 lines
1.4 KiB
Docker
30 lines
1.4 KiB
Docker
FROM jeanblanchard/tomcat:8
|
|
MAINTAINER Markus Birth <markus@birth-online.de>
|
|
|
|
ENV SUBSONIC_VERSION="6.0" LC_ALL="C.UTF-8" LANG="en_US.UTF-8" LANGUAGE="en_US.UTF-8" TZ="Europe/Berlin" MAX_MEM="256"
|
|
|
|
LABEL version="$SUBSONIC_VERSION"
|
|
LABEL description="Subsonic media streamer"
|
|
|
|
RUN apk upgrade -U \
|
|
&& apk add ca-certificates ffmpeg lame tzdata \
|
|
&& cp /usr/share/zoneinfo/${TZ} /etc/localtime \
|
|
&& echo "${TZ}" > /etc/timezone \
|
|
&& apk del tzdata \
|
|
&& rm -rf /var/cache/* \
|
|
&& mkdir -p /data/transcode /music/ /playlists/ /podcasts/ \
|
|
&& ln -s /usr/bin/lame /data/transcode/lame \
|
|
&& ln -s /usr/bin/ffmpeg /data/transcode/ffmpeg \
|
|
&& cd ${CATALINA_HOME}/webapps/ \
|
|
&& rm -rf ROOT \
|
|
&& wget -q "http://downloads.sourceforge.net/project/subsonic/subsonic/$SUBSONIC_VERSION/subsonic-$SUBSONIC_VERSION-war.zip?r=http%3A%2F%2Fwww.subsonic.org%2Fpages%2Fdownload2.jsp%3Ftarget%3Dsubsonic-$SUBSONIC_VERSION-standalone.tar.gz&ts=1431096340&use_mirror=garr" \
|
|
-O subsonic.war.zip \
|
|
&& unzip subsonic.war.zip && rm subsonic.war.zip && mv subsonic.war ROOT.war
|
|
|
|
ADD server.xml ${CATALINA_HOME}/conf/
|
|
ENV JAVA_OPTS="-Xmx${MAX_MEM}m -Dsubsonic.host=0.0.0.0 -Dsubsonic.contextPath=/ -Dsubsonic.home=/data -Dsubsonic.defaultMusicFolder=/music/ -Dsubsonic.defaultPodcastFolder=/podcasts/ -Dsubsonic.defaultPlaylistFolder=/playlists/ -Djava.awt.headless=true"
|
|
|
|
VOLUME ["/data", "/music/", "/playlists/", "/podcasts/"]
|
|
|
|
EXPOSE 8080
|