docker-subsonic/README.md

29 lines
523 B
Markdown
Raw Normal View History

2015-05-14 16:48:39 +00:00
This repository contains configuration files for building a [Docker](https://github.com/docker/docker) image for the Subsonic media streamer.
2015-05-14 16:48:39 +00:00
## Noteworthy
* Subsonic (http://www.subsonic.org)
* Still is Java 8 ... (https://www.java.com/download/manual.jsp)
2015-05-14 16:48:39 +00:00
## Build your own image
```shell
docker build -t $USER/subsonic .
2015-05-14 16:48:39 +00:00
```
## Run a container with this image
```shell
docker run \
-it \
--rm \
-p 4040:4040 \
-p 4043:4043 \
2015-05-14 16:48:39 +00:00
--volume "/wherever/your/music/is:/opt/music/:ro" \
$USER/subsonic
2015-05-14 16:48:39 +00:00
```