updated music directory so that it is read only and added environment variable so explo knows where to scan for existing music
19 lines
776 B
YAML
19 lines
776 B
YAML
services:
|
|
explo:
|
|
image: ghcr.io/lumepart/explo:latest
|
|
restart: unless-stopped
|
|
container_name: explo
|
|
ports:
|
|
- "7288:7288"
|
|
volumes:
|
|
- /srv/docker/explo/.env:/opt/explo/.env
|
|
- /srv/docker/explo/config:/opt/explo/config # required — stores playlist cache and cover art
|
|
- /srv/music:/music/:ro # has to be in the same path you have your music system pointed to (it's recommended to put explo under a subfolder)
|
|
# - /path/to/slskd/downloads:/slskd/ # if using slskd
|
|
environment:
|
|
- TZ=UTC # Change this to the timezone set in ListenBrainz (default is UTC)
|
|
- WEB_UI=true
|
|
# Web UI credentials (required for login)
|
|
- UI_USERNAME=mattspeer
|
|
- UI_PASSWORD=Unlined6-Aloha-Carat
|
|
- MUSIC_DIR=/music |