mplayer meant for music streams

This commit is contained in:
Nikolas Garofil 2020-10-28 15:39:50 +01:00
parent a2da374763
commit e01ab9606b

11
mplayer-stream/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# mplayer meant for music streams
#
# docker run -d --name mplayer --device /dev/snd jess/mplayer-music \
# http://icecast.vrtcdn.be/stubru-high.mp3
#
# (replace http://icecast.vrtcdn.be/stubru-high.mp3 by some stream)
#
FROM alpine:latest
LABEL maintainer "Nikolas Garofil <nikolas@garofil.be>"
RUN apk --no-cache add mplayer
ENTRYPOINT ["mplayer"]