Skip to content

📻 Icecast 2 in Dockerfile (Docker container, compatible with liquidsoap)

License

Notifications You must be signed in to change notification settings

asoliverez/docker-icecast

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Icecast in Docker Build Status

Icecast2 Dockerfile

Run

Run with default password, export port 8000

docker run -p 8000:8000 moul/icecast
$BROWSER localhost:8000

Run with custom password

docker run -p 8000:8000 -e ICECAST_SOURCE_PASSWORD=aaaa -e ICECAST_ADMIN_PASSWORD=bbbb -e ICECAST_PASSWORD=cccc -e ICECAST_RELAY_PASSWORD=dddd moul/icecast

Run with custom configuration

docker run -p 8000:8000 -v /local/path/to/icecast/config:/etc/icecast2 moul/icecast
docker run -p 8000:8000 -v /local/path/to/icecast.xml:/etc/icecast2/icecast.xml moul/icecast

Extends Dockerfile

FROM moul/icecast
ADD ./icecast.xml /etc/icecast2

Docker-compose

icecast:
  image: moul/icecast
  volumes:
  - logs:/var/log/icecast2
  - /etc/localtime:/etc/localtime:ro
  environment:
  - ICECAST_SOURCE_PASSWORD=aaa
  - ICECAST_ADMIN_PASSWORD=bbb
  - ICECAST_PASSWORD=ccc
  - ICECAST_RELAY_PASSWORD=ddd
  ports:
  - 8000:8000

Examples

License

MIT

About

📻 Icecast 2 in Dockerfile (Docker container, compatible with liquidsoap)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • XSLT 85.5%
  • CSS 12.1%
  • Shell 1.2%
  • Dockerfile 1.2%