You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
867 B
Bash

# [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.
. ./.env
docker run -d \
--name=beets \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 8337:8337 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/beets/config:/config `# Persistent config 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