pltnk / docker-icecast2

Dockerfile for running icecast2 in a container.
https://hub.docker.com/r/pltnk/icecast2
MIT License
8 stars 5 forks source link
docker docker-image dockerfile icecast2 music online-radio streaming streaming-audio streaming-video

docker-icecast2

Build Status Docker Pulls Docker Image Size License

Simple Dockerfile for running icecast2 in a container. \ Just mount your icecast.xml file and you are good to go!

Works well with containerized Liquidsoap: pltnk/docker-liquidsoap

Installation

Configuration

docker run

docker run --name icecast2 -d --restart=always \
--publish 8000:8000 \
--volume /path/to/your/icecast.xml:/etc/icecast2/icecast.xml \
pltnk/icecast2

docker-compose.yml

icecast2:
  image: pltnk/icecast2
  container_name: icecast2
  restart: always
  ports:
    - 8000:8000
  volumes:
    - /path/to/your/icecast.xml:/etc/icecast2/icecast.xml