1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-04-15 11:47:09 +02:00

shoutcast: purge curl

This commit is contained in:
kev 2016-09-18 16:55:04 +08:00
parent 05aa8d7d3d
commit 58a02b4b40
3 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@ RUN set -xe \
&& apt-get install -y curl \ && apt-get install -y curl \
&& curl http://download.nullsoft.com/shoutcast/tools/sc_serv2_linux_x64-latest.tar.gz | tar xz \ && curl http://download.nullsoft.com/shoutcast/tools/sc_serv2_linux_x64-latest.tar.gz | tar xz \
&& mkdir -p control logs \ && mkdir -p control logs \
&& apt-get remove -y curl \ && apt-get purge --auto-remove -y curl \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY sc_serv.conf . COPY sc_serv.conf .

View File

@ -138,6 +138,9 @@ audio_output {
} }
``` ```
> `MPD` doesn't support `streampath` setting.
> The `mount` setting doesn't work.
```bash ```bash
$ export MPD_HOST=192.168.31.104 $ export MPD_HOST=192.168.31.104
$ mpc update $ mpc update

View File

@ -13,7 +13,7 @@ RUN set -xe \
&& apt-get install -y curl \ && apt-get install -y curl \
&& curl http://download.nullsoft.com/shoutcast/tools/sc_serv2_armv6_rpi-latest.tar.gz | tar xz \ && curl http://download.nullsoft.com/shoutcast/tools/sc_serv2_armv6_rpi-latest.tar.gz | tar xz \
&& mkdir -p control logs \ && mkdir -p control logs \
&& apt-get remove -y curl \ && apt-get purge --auto-remove -y curl \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY sc_serv.conf . COPY sc_serv.conf .