mirror of
https://github.com/linuxserver/docker-beets.git
synced 2026-02-20 02:34:56 +08:00
12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# copy config
|
||
[[ ! -e /config/beets.sh ]] && \
|
||
cp /defaults/beets.sh /config/beets.sh
|
||
[[ ! -e /config/config.yaml ]] && \
|
||
cp /defaults/config.yaml /config/config.yaml
|
||
|
||
# permissions
|
||
chown -R abc:abc \
|
||
/config
|