2021-04-10 10:16:29 +00:00
|
|
|
# Daapd (iTunes) media server with support for AirPlay devices, Apple Remote
|
|
|
|
# (and compatibles), Chromecast, MPD and internet radio.
|
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
daapd:
|
|
|
|
image: ghcr.io/linuxserver/daapd
|
|
|
|
container_name: daapd
|
|
|
|
network_mode: host
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# Where daapd server stores its config and dbase files.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/daapd/config:/config
|
|
|
|
# Map to your music folder.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/daapd/music:/music
|
|
|
|
restart: unless-stopped
|