Skip to content

nfrelink/docker-icecast2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

  • Pull the image from one of public Docker registries
    • GitHub Packages docker pull ghcr.io/nfrelink/icecast2
  • Build the image yourself
    • docker build -t nfrelink/icecast2 github.com/nfrelink/docker-icecast2

Configuration

  • Mount your icecast.xml to /etc/icecast2/icecast.xml
  • Publish necessary ports

docker run

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

docker-compose.yml

services:
  icecast2:
    image: ghcr.io/nfrelink/icecast2
    container_name: icecast2
    restart: always
    ports:
      - 8000:8000
    volumes:
      - /path/to/your/icecast.xml:/etc/icecast2/icecast.xml

About

Dockerfile for running icecast2 in a container.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dockerfile 100.0%