Files
dss.docker/icecast/Dockerfile
2015-10-30 10:56:12 +00:00

21 lines
440 B
Docker

FROM ubuntu:trusty
MAINTAINER Fergal Moran "Ferg@lMoran.me"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -qq -y update && \
apt-get -qq -y install icecast2 python-setuptools && \
apt-get clean
RUN easy_install supervisor && \
easy_install supervisor-stdout
CMD ["/start.sh"]
EXPOSE 8000
VOLUME ["/config", "/var/log/icecast2", "/etc/icecast2"]
ADD ./start.sh /start.sh
ADD ./etc /etc
RUN chown -R icecast2 /etc/icecast2