gists/mpd

By gists

Updated over 1 year ago

A daemon for playing music of various formats based on alpine

Image
1

100K+

gists/mpd repository overview

Dockerfile https://github.com/vgist/dockerfiles/tree/master/mpd

Automatically built by Github Actions

Volume
  • /music
  • /var/lib/mpd/playlists
Custom usage:
docker run \
    -d \
    --name mpd \
    --device /dev/snd \
    -p 6600:6600 \
    -p 8000:8000 \
    -v /your/music:/music \
    -v /your/playlists:/var/lib/mpd/playlists \
    gists/mpd
Compose example:
mpd:
  image: gists/mpd
  ports:
    - "6600:6600"
    - "8000:8000"
  volumes:
    - /your/music:/music
    - /your/playlists:/var/lib/mpd/playlists \
  devices:
    - /dev/snd
  restart: always
Client

Tag summary

Content type

Image

Digest

sha256:498fd20c0

Size

64.9 MB

Last updated

over 1 year ago

docker pull gists/mpd