17 lines
380 B
YAML
17 lines
380 B
YAML
services:
|
|
beets:
|
|
image: lscr.io/linuxserver/beets:latest
|
|
container_name: beets
|
|
environment:
|
|
PUID: 568
|
|
PGID: 568
|
|
TZ: Europe/Berlin
|
|
volumes:
|
|
- ./beets/config:/config
|
|
- /deine/library:/music
|
|
- /deine/downloads:/downloads
|
|
ports:
|
|
- 8337:8337 # optional, brauch man nicht wirklich
|
|
restart: unless-stopped
|
|
networks: {}
|