mirror of
https://github.com/casjaysdevdocker/tools
synced 2025-01-18 00:34:25 -05:00
12 lines
303 B
Bash
Executable File
12 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
mkdir -p /var/lib/docker/storage/daapd/etc &&
|
|
chmod -Rf 777 /var/lib/docker/storage/daapd
|
|
|
|
docker run -d \
|
|
--name=daapd \
|
|
--hostname daapd \
|
|
--net=host \
|
|
-v /var/lib/docker/storage/daapd/etc:/config \
|
|
-v /mnt/media/Music:/music \
|
|
registry.casjay.in/latest/daapd:latest
|