docker-subsonic/README.md

23 lines
583 B
Markdown
Raw Normal View History

2016-01-02 18:33:09 -08:00
docker-subsonic
===============
2016-01-02 17:29:24 -08:00
[Subsonic](http://www.subsonic.org/pages/index.jsp) in a docker container.
2016-01-02 18:33:09 -08:00
*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