Skip to content

mediainbox/docker-icecast-kh

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Icecast-KH in Docker

Run

Run with default password, export port 8000

docker run -p 8000:8000 stephanel/icecast-kh
$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 stephanel/icecast-kh

Run with custom configuration

docker run -p 8000:8000 -v /local/path/to/icecast.xml:/etc/icecast.xml stephanel/icecast-kh

Extends Dockerfile

FROM stephanel/icecast-kh
ADD ./icecast.xml /etc/icecast.xml

Docker-compose

icecast:
  image: stephanel/icecast-kh
  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
  - ICECAST_LOCATION=Earth
  - [email protected]
  - ICECAST_HOSTNAME=stream.doe.com
  ports:
  - 8000:8000

License

MIT

About

📻 Icecast-KH in Docker

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 63.8%
  • Dockerfile 36.2%