Subsonic in a docker file
Go to file
dave ef6353aa60 Optimize database on startup 2019-04-09 15:34:15 -07:00
Dockerfile Optimize database on startup 2019-04-09 15:34:15 -07:00
README.md Add dockerfile 2016-01-02 18:33:09 -08:00
start Optimize database on startup 2019-04-09 15:34:15 -07:00

README.md

docker-subsonic

Subsonic in a docker container.

Usage

  • Build: docker build -t subsonic .
  • Run: docker run -d -v /hostpath/music:/var/music -p 4050:4050 -p 4051:4051 subsonic

Persistence

To make the subsonic database persistent, a file and a dir must be mounted to the host:

  • -v /hostpath/subsonic/db:/var/subsonic/db
  • -v /hostpath/subsonic/subsonic.properties:/var/subsonic/subsonic.properties

Both locations must be read/writable by uid 1000.

TODO

  • Allow specifying UID for subsonic user on the fly