Hello, if you want to use docker, first thing to do is to obtain the token, then basically this compose file:
should work.
Let me know if you encounter any issue or have further questions. Tune MPD_ADDRESS to the correct host:port. Set the LISTENBRAINZ_TOKEN variable also of course.
Code:
---
version: '3.3'
services:
listenbrainz-mpd:
image: giof71/listenbrainz-mpd
network_mode: host
environment:
- MPD_ADDRESS=localhost:6600
- LISTENBRAINZ_TOKEN=your-listenbrainz-token
restart: unless-stopped
should work.
Let me know if you encounter any issue or have further questions. Tune MPD_ADDRESS to the correct host:port. Set the LISTENBRAINZ_TOKEN variable also of course.