2016-07-09 20:19:09 +02:00
|
|
|
icecast
|
|
|
|
=======
|
2016-08-27 15:24:12 +02:00
|
|
|
|
|
|
|
[Icecast][1] is a streaming media project released as free software maintained
|
|
|
|
by the Xiph.org Foundation.
|
|
|
|
|
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```yaml
|
2021-10-18 06:06:54 +02:00
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
|
|
icecast:
|
|
|
|
image: vimagick/icecast
|
|
|
|
ports:
|
|
|
|
- "8000:8000"
|
|
|
|
volumes:
|
|
|
|
# ./data/etc:/etc/icecast:ro
|
|
|
|
- ./data/log:/var/log/icecast:rw
|
|
|
|
restart: unless-stopped
|
2016-08-27 15:24:12 +02:00
|
|
|
```
|
|
|
|
|
2021-10-18 06:06:54 +02:00
|
|
|
> You can mount custom config file: [icecast.xml][2]
|
|
|
|
|
2016-08-27 15:24:12 +02:00
|
|
|
## Server Setup
|
|
|
|
|
|
|
|
```bash
|
2021-10-18 06:06:54 +02:00
|
|
|
$ mkdir -p data/{etc,log}
|
|
|
|
$ chmod -R 777 data/log
|
2016-08-27 15:24:12 +02:00
|
|
|
$ docker-compose up -d
|
|
|
|
```
|
|
|
|
|
|
|
|
## Client Setup
|
|
|
|
|
|
|
|
- Linux: ices
|
|
|
|
- MacOS: butt
|
|
|
|
|
|
|
|
[1]: http://icecast.org/
|
2021-10-18 06:06:54 +02:00
|
|
|
[2]: https://github.com/xiph/Icecast-Server/tree/master/conf
|