Subsonic in a docker file
Go to file
dave 9a3ec36336 Bump subsonic version to 6.1-beta2 2017-04-02 15:21:06 -07:00
Dockerfile Bump subsonic version to 6.1-beta2 2017-04-02 15:21:06 -07:00
README.md Add dockerfile 2016-01-02 18:33:09 -08:00
subsonic.conf Add dockerfile 2016-01-02 18:33:09 -08:00
supervisor.conf Add dockerfile 2016-01-02 18:33:09 -08: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