Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 731 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 731 Bytes

Icecast

Docker Build Status Docker Pulls

Docker container to run an Icecast server

Usage

docker create \
--name=icecast \
-p 8000:8000
-v </path/to/config>:/icecast \
threesquared/icecast

Or with a docker-compose.yml file:

version: '2.1'
services:
  icecast:
    image: threesquared/icecast:latest
    container_name: icecast
    ports:
      - 8000:8000
    volumes:
      - "/path/to/config:/icecast"