Giter Site home page Giter Site logo

mpd-docker's Introduction

MPD Docker Image

Simple Music Player Daemon (MPD) image for Docker tracking latest Ubuntu rolling package version.

Setup

It's recommended to create a dedicated directory on the host for storing MPD config, database and state files.

mkdir -p /etc/mpd

Download the example config to the MPD directory

curl https://raw.githubusercontent.com/scooter1556/mpd-docker/main/mpdconf.example > /etc/mpd/mpd.conf

Modify the configuration as needed following MPD Documentation

Docker

docker run -d --name mpd -v /etc/mpd/mpd.conf:/etc/mpd.conf -v /etc/mpd:/etc/mpd -v /Path/To/Your/Music:/var/lib/mpd/music -p 6600:6600 --device /dev/snd --cap-add=sys_nice scootsoftware/mpd

Docker Compose

version: '3'
services:
mpd:
    container_name: mpd
    image: scootsoftware/mpd
    volumes:
      - /etc/mpd/mpd.conf:/etc/mpd.conf
      - /etc/mpd:/etc/mpd
      - /Path/To/Your/Music:/var/lib/mpd/music
      - /Path/To/Your/Playlists:/var/lib/mpd/playlist
    restart: unless-stopped
    ports:
      - "6600:6600"
    devices:
      - /dev/snd:/dev/snd
    cap_add:
      - SYS_NICE

mpd-docker's People

Contributors

scooter1556 avatar srware avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.