From ceaae9f8336e21151627f5b3bb64e073f1ef9f10 Mon Sep 17 00:00:00 2001 From: mattspeer Date: Sun, 19 Jul 2026 08:57:07 -0500 Subject: [PATCH] Add docker-compose.yaml --- docker-compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..14b632c --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +services: + explo: + image: ghcr.io/lumepart/explo:latest + restart: unless-stopped + container_name: explo + ports: + - "7288:7288" + volumes: + - ./explo/.env:/opt/explo/.env + - ./explo/config:/opt/explo/config # required — stores playlist cache and cover art + - /path/to/musiclibrary/explo:/data/ # 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=testuser + - UI_PASSWORD=testpassword \ No newline at end of file