linuxserver/daapd.

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

7,027,319 71 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/daapd
Build Time 01 May 2024 08:46:54
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.9.20240501 01 May 2024 at 08:46:54

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.9.20240501
    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.9.20240501