linuxserver/daapd.

A Forked-daapd container, brought to you by LinuxServer.io.

7,221,316 71 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/daapd
Build Time 13 Nov 2024 08:53:50
Category Media
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 28.10.20241113 13 Nov 2024 at 08:53:50

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  daapd:
    image: linuxserver/daapd:28.10.20241113
    container_name: daapd
    network_mode: host
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London.
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/music:/music # Map to your music folder.
      - /host/path/to/config:/config # Where daapd server stores its config and dbase files.

CLI

docker create \
  --name=daapd \
  --net=host \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -v /host/path/to/music:/music `# Map to your music folder.` \
  -v /host/path/to/config:/config `# Where daapd server stores its config and dbase files.` \
  --restart unless-stopped \
  linuxserver/daapd:28.10.20241113