update README
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
8a791f1493
commit
bd27c82805
1 changed files with 10 additions and 20 deletions
30
README.md
30
README.md
|
@ -1,37 +1,27 @@
|
||||||
|
|
||||||
This repository contains configuration files for building a
|
This repository contains configuration files for building a [Docker](https://github.com/docker/docker) image for the Subsonic media streamer.
|
||||||
Docker (http://docker.io) image for the Subsonic media streamer.
|
|
||||||
|
|
||||||
## Noteworthy
|
## Noteworthy
|
||||||
|
|
||||||
* Subsonic 6.0 (http://www.subsonic.org)
|
* Subsonic (http://www.subsonic.org)
|
||||||
|
* Still is Java 8 ... (https://www.java.com/download/manual.jsp)
|
||||||
|
|
||||||
## Build your own image
|
## Build your own image
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ docker build -t <your-name>/docker-subsonic .
|
$ docker build -t $USER/-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
|
## Run a container with this image
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ docker run \
|
docker run \
|
||||||
--detach \
|
-it \
|
||||||
--publish 8080:8080 \
|
--rm \
|
||||||
|
-p 4040:4040 \
|
||||||
|
-p 4043:4043 \
|
||||||
--volume "/wherever/your/music/is:/opt/music/:ro" \
|
--volume "/wherever/your/music/is:/opt/music/:ro" \
|
||||||
<your-name>/subsonic
|
$USER/subsonic
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue