docker-bits/lsio/daapd/docker-run.sh

16 lines
717 B
Bash
Raw Normal View History

2021-07-22 00:48:17 +00:00
# [Daapd](https://owntone.github.io/owntone-server/) (iTunes) media server with
2021-04-21 00:55:42 +00:00
# support for AirPlay devices, Apple Remote (and compatibles), Chromecast, MPD
# and internet radio.
2021-04-10 10:16:29 +00:00
source ./.env
docker run -d \
--name=daapd \
--net=host `# Shares host networking with container.` \
2022-04-02 00:45:58 +00:00
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
2021-04-13 00:58:58 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
2021-04-10 10:16:29 +00:00
-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