1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/icecast/README.md

39 lines
660 B
Markdown
Raw Normal View History

2016-07-09 18:19:09 +00:00
icecast
=======
2016-08-27 13:24:12 +00: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 04:06:54 +00: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 13:24:12 +00:00
```
2021-10-18 04:06:54 +00:00
> You can mount custom config file: [icecast.xml][2]
2016-08-27 13:24:12 +00:00
## Server Setup
```bash
2021-10-18 04:06:54 +00:00
$ mkdir -p data/{etc,log}
$ chmod -R 777 data/log
2016-08-27 13:24:12 +00:00
$ docker-compose up -d
```
## Client Setup
- Linux: ices
- MacOS: butt
[1]: http://icecast.org/
2021-10-18 04:06:54 +00:00
[2]: https://github.com/xiph/Icecast-Server/tree/master/conf