2016-02-28 18:43:42 +00:00
2015-11-24 07:47:06 +01:00
2016-02-28 18:43:42 +00:00
2016-01-07 13:08:06 +10:30

https://linuxserver.io

The LinuxServer.io team brings you another quality container, easy user mapping and community support. Be sure to checkout our forums or for real-time support our IRC on freenode at #linuxserver.io.

lsiodev/daapd

DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio. Forked-daapd

Usage

docker create --name=daapd -v /etc/localtime:/etc/localtime:ro -v <path to data>:/config -v <path to music>:/music -e PGID=<gid> -e PUID=<uid>  --net=host lsiodev/daapd

Parameters

  • --net=host - must be run in host mode
  • -v /etc/localtime for timesync - optional
  • -v /config - Where daapd server stores its config and dbase files.
  • -v /music - map to your music folder
  • -e PGID for GroupID - see below for explanation
  • -e PUID for UserID - see below for explanation

It is based on phusion-baseimage with ssh removed, for shell access whilst the container is running do docker exec -it daapd /bin/bash.

User / Group Identifiers

TL;DR - The PGID and PUID values set the user / group you'd like your container to 'run as' to the host OS. This can be a user you've created or even root (not recommended).

Part of what makes our containers work so well is by allowing you to specify your own PUID and PGID. This avoids nasty permissions errors with relation to data volumes (-v flags). When an application is installed on the host OS it is normally added to the common group called users, Docker apps due to the nature of the technology can't be added to this group. So we added this feature to let you easily choose when running your containers.

Setting up the application

Map your music folder, open up itunes on the same LAN to see your music there. For further setup options of remotes etc, check out the daapd website, link above.

Logs

  • To monitor the logs of the container in realtime docker logs -f daapd.

Versions

  • 04.01.2016: Disable ipv6 by default because in v23.4 it doesn't work in unraid with it set.
  • 17.12.2015: Add in spotify support.
  • 25.11.2015: Initial Release.
Description
No description provided
Readme GPL-3.0 564 KiB
Languages
Dockerfile 100%