This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-12-10 17:46:36 +01:00
2019-12-10 17:46:36 +01:00
2015-05-14 18:18:21 +02:00
2019-12-10 17:46:36 +01:00
2017-06-15 01:32:44 +02:00

This repository contains configuration files for building a Docker image for the Subsonic media streamer.

Noteworthy

Volumes

  • /data --- Directory to store Subsonic's log, configuration and database
  • /music --- Default music folder
  • /podcasts --- Default podcast folder
  • /playlists --- Default playlist folder

Environment Variables

  • TZ --- timezone setting, default: Europe/Berlin
  • MAX_MEM --- maximum Java heap size in megabytes, default: 256

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 mbirth/subsonic

The repository page is at https://hub.docker.com/r/mbirth/subsonic/

Run a container with this image

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

Description
Docker image configuration for Subsonic media streamer; originally forked from https://github.com/cyrilix/docker-subsonic
Readme Apache-2.0 59 KiB
Latest
2017-11-09 11:40:51 +00:00
Languages
Dockerfile 100%