docker-bits/lsio/daapd/docker-compose.yaml
2021-04-21 00:55:42 +00:00

25 lines
763 B
YAML

# [Daapd](https://ejurgensen.github.io/forked-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
- TZ=${TZ:-Europe/Amsterdam}
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