Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthenning/owntone-docker
OwnTone Docker image
https://github.com/matthenning/owntone-docker
Last synced: about 1 month ago
JSON representation
OwnTone Docker image
- Host: GitHub
- URL: https://github.com/matthenning/owntone-docker
- Owner: matthenning
- Created: 2022-12-13T17:43:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T18:02:21.000Z (about 2 years ago)
- Last Synced: 2024-11-07T13:48:39.317Z (3 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# owntone-docker
OwnTone Docker imagehttps://hub.docker.com/r/matthenning/owntone
You need to pass your desired admin password via environment variable `OWNTONE_PASSWORD` and map your media directory to `/srv/music`.
Additionally you can set `OWNTONE_UID` and `OWNTONE_GID` to change the owntone user's uid and gid. This can be useful to map the container users to a host user with permissions on the mapped media volume.Example:
```
docker run -p 3689:3689 -e OWNTONE_PASSWORD='password' -e OWNTONE_UID='1234' -e OWNTONE_GID='1234' -v /media/music:/srv/music -d matthenning/owntone:latest
```