Files
dss.docker/radio/Dockerfile
Fergal Moran 4bdef0ae54 Pre merge
2015-10-05 19:15:19 +00:00

21 lines
435 B
Docker

FROM ubuntu:trusty
MAINTAINER Manfred Touron "m@42.am"
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