mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
22 lines
311 B
Docker
22 lines
311 B
Docker
|
#
|
||
|
# Dockerfile for cmus-arm
|
||
|
#
|
||
|
|
||
|
FROM easypi/alpine-arm
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN apk add --no-cache cmus
|
||
|
|
||
|
VOLUME /root/.cmus
|
||
|
WORKDIR /root/.cmus
|
||
|
|
||
|
ENV CMUS_SOCKET=0.0.0.0:3000
|
||
|
ENV USERNAME=root
|
||
|
ENV PASSWORD=secret
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
CMD set -xe \
|
||
|
&& echo "set passwd=$PASSWORD" > rc \
|
||
|
&& cmus
|