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

18 lines
813 B
Bash
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Beets](http://beets.io/) is a music library manager and not, for the most
# part, a music player. It does include a simple player plugin and an
# experimental Web-based player, but it generally leaves actual sound-
# reproduction to specialized tools.
2021-04-10 10:16:29 +00:00
source ./.env
docker run -d \
--name=beets \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
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
-p 8337:8337 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/beets/config:/config `# Configuration files.` \
-v ${BASEDIR:-/volume1/docker}/beets/music:/music `# Music library` \
-v ${BASEDIR:-/volume1/docker}/beets/downloads:/downloads `# Non processed music` \
--restart unless-stopped \
ghcr.io/linuxserver/beets