https://github.com/caseywebb/docker-subsonic
:notes: linuxserver.io-esque Subsonic Dockerfile
https://github.com/caseywebb/docker-subsonic
Last synced: about 2 months ago
JSON representation
:notes: linuxserver.io-esque Subsonic Dockerfile
- Host: GitHub
- URL: https://github.com/caseywebb/docker-subsonic
- Owner: caseyWebb
- Created: 2016-07-30T18:01:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-30T19:43:57.000Z (almost 9 years ago)
- Last Synced: 2024-10-18T07:13:29.882Z (7 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# docker-subsonic
[Subsonic](http://www.subsonic.org/pages/index.jsp) organizes music in your personal library and lets you stream it anywhere. This container is packaged as a standalone Subsonic server, and it is based on linuxserver.io's [base image](https://hub.docker.com/r/linuxserver/baseimage/).
## Usage
```bash
$ docker create \
--name=subsonic \
-p 4040:4040 \
-e PUID= -e PGID= \
-v config:/config \
-v :/music \
-v :/podcasts \
-v :/playlists \
caseywebb/subsonic
```#### User / Group Identifiers
*shamelessly taken from [linuxserver.io](linuxserver.io)*Sometimes when using data volumes (-v flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user PUID and group PGID. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" TM.
In this instance PUID=1001 and PGID=1001. To find yours use id user as below:
```bash
$ id
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
```