diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..e4ea9b1 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,16 @@ +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: {}