All checks were successful
continuous-integration/drone/push Build is passing
17 lines
485 B
Docker
17 lines
485 B
Docker
FROM alpine:edge
|
|
MAINTAINER Samuel Warkentin <sam@sam-services.de>
|
|
|
|
RUN apk --update add openjdk8-jre ffmpeg supervisor
|
|
|
|
ENV VERSION=6.1.5
|
|
|
|
RUN wget http://s3-eu-west-1.amazonaws.com/subsonic-public/download/subsonic-$VERSION-standalone.tar.gz -O subsonic.tar.gz
|
|
RUN tar xvfz subsonic.tar.gz && rm -f subsonic.tar.gz
|
|
RUN sed -i -e 's,1 &,1,g' subsonic.sh
|
|
|
|
VOLUME [ "/data" ]
|
|
EXPOSE 4040
|
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
COPY start-subsonic.sh /
|
|
CMD ["/usr/bin/supervisord"] |