initial push

This commit is contained in:
2021-10-06 00:15:32 -04:00
commit 654f3b26c2
20 changed files with 1601 additions and 0 deletions

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM ubuntu:latest
LABEL maintainer "me@seanland.ca"
RUN apt-get -y update; \
apt-get -y upgrade; \
apt-get install -y ices2 icecast2 sudo; \
apt-get clean;
COPY ./ices.xml /ices.xml
COPY ./start-icecast.sh /start-icecast.sh
COPY ./start-ices.sh /start-ices.sh
ADD ./etc /etc
EXPOSE 8000
VOLUME ["/config"]
CMD ["/start-icecast.sh"]