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.
Go to file
Cyrille Nofficial d8ef67a251 Upgrade to 5.3 2015-10-28 20:31:08 +01:00
Dockerfile Upgrade to 5.3 2015-10-28 20:31:08 +01:00
LICENSE Initial commit 2015-05-14 18:18:21 +02:00
README.md Upgrade to 5.3.beta2 2015-10-11 11:49:49 +02:00

README.md

This repository contains configuration files for building a Docker (http://docker.io) image for the Subsonic media streamer.

Noteworthy

Build your own image

$ 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:

$ docker pull  cyrilix/subsonic

The repository page is at https://index.docker.io/u/cyrilix/subsonic/

Run a container with this image

$ docker run \
  --detach \
  --publish 8080:8080 \
  --volume "/wherever/your/music/is:/opt/music/:ro" \
  <your-name>/subsonic

Configuration

Specify env variables:

  • CONTEXT_PATH = The context path, i.e., the last part of the Subsonic URL. Typically '/' or '/subsonic'. Default '/'
  • PORT = The port on which Subsonic will listen for incoming HTTP traffic. Default: 8080