mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
17 lines
850 B
Bash
17 lines
850 B
Bash
# [Daapd](https://owntone.github.io/owntone-server/) (iTunes) media server with
|
|
# support for AirPlay devices, Apple Remote (and compatibles), Chromecast, MPD
|
|
# and internet radio.
|
|
|
|
source ./.env
|
|
docker run -d \
|
|
--name=daapd \
|
|
--net=host `# Shares host networking with container.` \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
-v ${BASEDIR:-/volume1/docker}/daapd/config:/config `# Where daapd server stores its config and dbase files.` \
|
|
-v ${BASEDIR:-/volume1/docker}/daapd/music:/music `# Map to your music folder.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/daapd
|