First working version

This commit is contained in:
2020-04-30 12:36:27 +02:00
parent 5d1a8bbd52
commit f18e948aad
8 changed files with 495 additions and 2 deletions

12
icecast-docker/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM ubuntu:xenial
RUN apt-get update && apt-get upgrade -y \
&& apt-get install icecast2 sudo -y \
&& apt-get clean
COPY entry.sh /entry.sh
VOLUME ["/etc/icecast2/"]
EXPOSE 8000
CMD ["/entry.sh"]