mbirth / docker-madsonic

Madsonic is a Subsonic fork.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repository contains configuration files for building a Docker image for the Madsonic media streamer.

Noteworthy

Volumes

  • /data --- Directory to store Madsonic's log, configuration and database
  • /music --- Default music folder
  • /podcasts --- Default podcast folder
  • /playlists --- Default playlist folder

Environment Variables

  • TZ --- timezone setting, default: Europe/Berlin
  • MAX_MEM --- maximum Java heap size in megabytes, default: 256

Build your own image

$ docker build -t <your-name>/docker-madsonic .

Get a pre-built image

A current image is available as a trusted build from the Docker index:

$ docker pull mbirth/madsonic

The repository page is at https://hub.docker.com/r/mbirth/madsonic/

Run a container with this image

$ docker run \
  --detach \
  --publish 4040:4040 \
  --volume "/wherever/your/music/is:/music/:ro" \
  <your-name>/madsonic

About

Madsonic is a Subsonic fork.

License:GNU General Public License v3.0