This repository has been archived on 2021-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
docker-subsonic/README.md

39 lines
671 B
Markdown

This repository contains configuration files for building a
Docker (http://docker.io) image for the Subsonic media streamer.
## Noteworthy
* Subsonic 6.0 (http://www.subsonic.org)
## Build your own image
```shell
$ docker build -t <your-name>/docker-subsonic .
```
## Get a pre-built image
A current image is available as a trusted build from the Docker index:
```shell
$ docker pull cyrilix/subsonic
```
The repository page is at
https://index.docker.io/u/cyrilix/subsonic/
## Run a container with this image
```shell
$ docker run \
--detach \
--publish 8080:8080 \
--volume "/wherever/your/music/is:/opt/music/:ro" \
<your-name>/subsonic
```