Docker container based on JRE-8 image running subsonic as music service
10K+
docker pull smangelsen/subsonic:latest
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
Open http://localhost:4040/subsonic with your favorite web browser.
Content type
Image
Digest
Size
256.7 MB
Last updated
about 6 years ago
docker pull smangelsen/subsonic