mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
25 lines
818 B
YAML
25 lines
818 B
YAML
# [Daapd](https://owntone.github.io/owntone-server/) (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 UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- 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
|