icecast2/Dockerfile

13 lines
250 B
Text
Raw Normal View History

2014-11-14 14:05:40 +00:00
From ubuntu:14.04
MAINTAINER Knut Ahlers <knut@ahlers.me>
RUN apt-get update && \
apt-get install -y icecast2
VOLUME /etc/icecast2/icecast.xml
EXPOSE 8000 8001
USER icecast2
ENTRYPOINT ["/usr/bin/icecast2", "-c", "/etc/icecast2/icecast.xml"]