You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
689 B
28 lines
689 B
7 years ago
|
FROM alpine:3.6
|
||
|
|
||
|
LABEL description="Airsonic is a free, web-based media streamer, providing ubiquitious access to your music." \
|
||
|
url="https://github.com/airsonic/airsonic"
|
||
|
|
||
|
ENV UID=1001 GID=1001 AIRSONIC_PORT=4040 AIRSONIC_DIR=/airsonic
|
||
|
|
||
|
WORKDIR $AIRSONIC_DIR
|
||
|
|
||
|
COPY dockerfiles/run.sh /usr/local/bin/run.sh
|
||
7 years ago
|
COPY target/dependency/airsonic-main-6.3-SNAPSHOT.war airsonic.war
|
||
7 years ago
|
|
||
|
RUN apk --no-cache add \
|
||
|
ffmpeg \
|
||
|
lame \
|
||
|
su-exec \
|
||
|
libressl \
|
||
|
ca-certificates \
|
||
|
tini \
|
||
|
openjdk8-jre \
|
||
|
&& chmod +x /usr/local/bin/run.sh
|
||
|
|
||
|
EXPOSE $AIRSONIC_PORT
|
||
|
|
||
|
VOLUME $AIRSONIC_DIR/data $AIRSONIC_DIR/music $AIRSONIC_DIR/playlists $AIRSONIC_DIR/podcasts
|
||
|
|
||
|
ENTRYPOINT ["run.sh"]
|