This commit is contained in:
Wouter Habets
2016-08-06 13:24:21 +02:00
commit 1601b62e29
6 changed files with 203 additions and 0 deletions

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
Mopidy
======
Image for running Mopidy in Docker.
Based on [wernight/docker-mopidy](https://github.com/wernight/docker-mopidy).
## How to use
```bash
docker run \
--name mopidy \
-e PULSE_SERVER=tcp:127.0.0.1:4713 \ # Pulseaudio server for sound
-v $PWD/media:/var/lib/mopidy/media:ro \ # Media files
-v $PWD/local:/var/lib/mopidy/local \ # Some kind of music storage(?)
-v $PWD/account-config:/var/lib/mopidy/.config/mopidy/account-config \ # Place here the account configurations (see account-config.conf)
-p 6600:6600 \ # Port for MPD
-p 6680:6680 \ # Port for the webinterface
whhoesj/mopidy-web
```