Last active
July 16, 2018 05:15
-
-
Save ulyssesr/959a2165ba4b75becf9b7f59f2c29dd0 to your computer and use it in GitHub Desktop.
Docker compose file for Icecast2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
icecast: | |
image: moul/icecast | |
environment: | |
- ICECAST_SOURCE_PASSWORD=secret | |
- ICECAST_ADMIN_PASSWORD=secret | |
- ICECAST_PASSWORD=secret | |
- ICECAST_RELAY_PASSWORD=secret | |
ports: | |
- "8000:8000" | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment