Sign inSign up

smangelsen/subsonic

By smangelsen

Updated about 6 years ago

Docker container based on JRE-8 image running subsonic as music service

Image
0

10K+

smangelsen/subsonic repository overview

start

Download the image

docker pull smangelsen/subsonic:latest

Docker Compose

create an docker-compose.yml file with the following content:

version: "3.7"

services:
  subsonic:
    init: true
    container_name: "subsonic-music"
    build:
      context: ./docker/
      args:
        SUBSONIC_VERSION: 6.1.6
    image: smangelsen/subsonic:6.1.6
    restart: always
    volumes:
      - subsonic-db:/opt/app/state:rw
      - /store/mp3:/mnt/music:rw
    environment:
      SUBSONIC_UID: 1000
      SUBSONIC_MAX_MEMORY: 2048
      SUBSONIC_CONTEXT_PATH: /subsonic
    ports:
      - 4040:4040

volumes:
  subsonic-db:
    name: subsonic-music-db

Access web interface

Open http://localhost:4040/subsonic with your favorite web browser.

Tag summary

Content type

Image

Digest

Size

256.7 MB

Last updated

about 6 years ago

docker pull smangelsen/subsonic