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.

30 lines
973 B
YAML

# [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.
---
version: "2.1"
services:
beets:
image: ghcr.io/linuxserver/beets
container_name: beets
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/beets/config:/config
# Music library
- ${BASEDIR:-/volume1/docker}/beets/music:/music
# Non processed music
- ${BASEDIR:-/volume1/docker}/beets/downloads:/downloads
ports:
# Application WebUI
- 8337:8337
restart: unless-stopped