Sign inSign up

emauve/subsonic

By emauve

Updated over 10 years ago

Subsonic 6.0 Standalone with Docker

Image
4

1.9K

emauve/subsonic repository overview

docker-subsonic

Dockerfile for subsonic

Usage

Create the data container with:

sudo docker run --name subsonic_data \
	-v /data/music:/var/music \
	emauve/subsonic:6.0 /bin/true
  • In this example, the actual music files are managed in the /data/music.

  • Data container manages only the subsonic configuration information.

After crerateing this run subsonic_app:

sudo docker run -d -t -i \
	--publish 8100:4040 \
	--name="subsonic_app" \
	--volumes-from subsonic_data \
	emauve/subsonic:6.0
  • In this example, we specify port 4040 to 8100.

Port (default)

  • 4040

Data (default)

  • /var/music
  • /var/subsonic

Tag summary

Content type

Image

Digest

sha256:b22462612

Size

187 MB

Last updated

over 10 years ago

docker pull emauve/subsonic