MinimServer is a new UPnP AV music server with a number of innovative features that make it easier to organize and explore your music collection. If you have a network music player that supports the UPnP AV standards (see this page), you'll get much more from your music collection if you're using MinimServer as your music server software.
Clone this repository:
$ git clone https://github.com/wdstar/docker-minimserver.git
$ cd docker-minimserver
$ docker-compose up -d
Build the image:
$ git checkout v0.8 # Run this command if the device is a amd64
$ git checkout armhf # Run this command if the device is a Raspberry
$ docker build --tag="$USER/docker-minimserver"
Run your build (as a daemon):
$ docker run -d --name=<your_container_name> --net=host -v <path_to_your_music>:/media/:ro $USER/docker-minimserver:latest
Run the official image (as a daemon):
$ docker run -d --name=<your_container_name> --net=host -v <path_to_your_music>:/media/:ro minimworld/minimserver:latest
Configuration is available through minimwatch program
For debugging and maintenance purposes you may want access the containers shell. Either add after the run command or tun e.g.
$ docker ps
$ docker exec -it <container-id> bash
add the parameter --restart=always
to your docker run command.