Initial commit.

2.4
Icedream 2016-02-25 17:36:42 +01:00
commit bf74a00aac
9 changed files with 135 additions and 0 deletions

22
2.3.3/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM alpine:3.3
ENV ICECAST_VERSION 2.3.3
RUN \
apk --update add build-base openssl libvorbis opus libogg speex libtheora curl &&\
curl http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION}.tar.gz |\
tar xz -C /tmp &&\
cd /tmp/icecast-${ICECAST_VERSION} &&\
./configure --enable-static &&\
make &&\
make install &&\
apk del build-base &&\
cd $HOME &&\
rm -rf /tmp/* /var/cache/apk/* &&\
addgroup -g 9999 icecast &&\
adduser -S -D -H -u 9999 -G 9999 -s /bin/false icecast &&\
USER 9999
VOLUME [ "/data" ]
CMD [ "/usr/local/bin/icecast", "-c", "/data/icecast.xml" ]
EXPOSE 8000

1
2.4 Symbolic link
View File

@ -0,0 +1 @@
2.4.3

22
2.4.0/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM alpine:3.3
ENV ICECAST_VERSION 2.4.0
RUN \
apk --update add build-base openssl libvorbis opus libogg speex libtheora curl &&\
curl http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION}.tar.gz |\
tar xz -C /tmp &&\
cd /tmp/icecast-${ICECAST_VERSION} &&\
./configure --enable-static &&\
make &&\
make install &&\
apk del build-base &&\
cd $HOME &&\
rm -rf /tmp/* /var/cache/apk/* &&\
addgroup -g 9999 icecast &&\
adduser -S -D -H -u 9999 -G 9999 -s /bin/false icecast &&\
USER 9999
VOLUME [ "/data" ]
CMD [ "/usr/local/bin/icecast", "-c", "/data/icecast.xml" ]
EXPOSE 8000

22
2.4.1/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM alpine:3.3
ENV ICECAST_VERSION 2.4.1
RUN \
apk --update add build-base openssl libvorbis opus libogg speex libtheora curl &&\
curl http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION}.tar.gz |\
tar xz -C /tmp &&\
cd /tmp/icecast-${ICECAST_VERSION} &&\
./configure --enable-static &&\
make &&\
make install &&\
apk del build-base &&\
cd $HOME &&\
rm -rf /tmp/* /var/cache/apk/* &&\
addgroup -g 9999 icecast &&\
adduser -S -D -H -u 9999 -G 9999 -s /bin/false icecast &&\
USER 9999
VOLUME [ "/data" ]
CMD [ "/usr/local/bin/icecast", "-c", "/data/icecast.xml" ]
EXPOSE 8000

22
2.4.2/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM alpine:3.3
ENV ICECAST_VERSION 2.4.2
RUN \
apk --update add build-base openssl libvorbis opus libogg speex libtheora curl &&\
curl http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION}.tar.gz |\
tar xz -C /tmp &&\
cd /tmp/icecast-${ICECAST_VERSION} &&\
./configure --enable-static &&\
make &&\
make install &&\
apk del build-base &&\
cd $HOME &&\
rm -rf /tmp/* /var/cache/apk/* &&\
addgroup -g 9999 icecast &&\
adduser -S -D -H -u 9999 -G 9999 -s /bin/false icecast &&\
USER 9999
VOLUME [ "/data" ]
CMD [ "/usr/local/bin/icecast", "-c", "/data/icecast.xml" ]
EXPOSE 8000

22
2.4.3/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM alpine:3.3
ENV ICECAST_VERSION 2.4.3
RUN \
apk --update add build-base openssl libvorbis opus libogg speex libtheora curl &&\
curl http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION}.tar.gz |\
tar xz -C /tmp &&\
cd /tmp/icecast-${ICECAST_VERSION} &&\
./configure --enable-static &&\
make &&\
make install &&\
apk del build-base &&\
cd $HOME &&\
rm -rf /tmp/* /var/cache/apk/* &&\
addgroup -g 9999 icecast &&\
adduser -S -D -H -u 9999 -G 9999 -s /bin/false icecast &&\
USER 9999
VOLUME [ "/data" ]
CMD [ "/usr/local/bin/icecast", "-c", "/data/icecast.xml" ]
EXPOSE 8000

1
2.5 Symbolic link
View File

@ -0,0 +1 @@
2.5-beta1/

22
2.5-beta1/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM alpine:3.3
ENV ICECAST_VERSION 2.5-beta1
RUN \
apk --update add build-base openssl libvorbis opus libogg speex libtheora curl &&\
curl http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION}.tar.gz |\
tar xz -C /tmp &&\
cd /tmp/icecast-${ICECAST_VERSION} &&\
./configure --enable-static &&\
make &&\
make install &&\
apk del build-base &&\
cd $HOME &&\
rm -rf /tmp/* /var/cache/apk/* &&\
addgroup -g 9999 icecast &&\
adduser -S -D -H -u 9999 -G 9999 -s /bin/false icecast &&\
USER 9999
VOLUME [ "/data" ]
CMD [ "/usr/local/bin/icecast", "-c", "/data/icecast.xml" ]
EXPOSE 8000

1
latest Symbolic link
View File

@ -0,0 +1 @@
2.4.3