mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
23 lines
316 B
Docker
23 lines
316 B
Docker
#
|
|
# Dockerfile for cmus
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache cmus
|
|
|
|
VOLUME /etc/cmus
|
|
WORKDIR /etc/cmus
|
|
|
|
ENV CMUS_HOME=/etc/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
|