Sonobarr
Music discovery tool that integrates with Lidarr and provides recommendations using Last.fm
Install / Use
/learn @Dodelidoo-Labs/SonobarrREADME
Sonobarr
Music discovery for Lidarr power users, blending Last.fm insights, ListenBrainz playlists, and a modern web UI.
Sonobarr marries your existing Lidarr library with Last.fm's discovery graph to surface artists you'll actually like. It runs as a Flask + Socket.IO application, ships with a polished Bootstrap UI, and includes admin tooling so folks can share a single instance safely.
<p align="center"> <img src="https://inubes.app/apps/files_sharing/publicpreview/5j6WJYrCGcBijdo?file=/&fileId=27122&x=3840&y=2160&a=true&etag=e598390299bd52d0b98cf85a4d7aacee" alt="Sonobarr logo"> </p>Table of contents
- Features at a glance
- How it works
- Quick start (Docker)
- Environment reference
- Local development
- Using the app
- Screenshots
- Troubleshooting & FAQ
- Contributing
- License
Features at a glance
- 🔌 Deep Lidarr integration - sync monitored artists, apply per-source monitor strategies, toggle monitor-new-albums policies, and send additions straight back to Lidarr.
- 🧭 Personal discovery hub - stream batches sourced from your Lidarr library, your saved Last.fm scrobbles, and ListenBrainz Weekly Exploration playlists, all controllable from the sidebar.
- 🤖 AI assistant - describe the vibe you want and let any OpenAI-compatible model seed new sessions with fresh artists, respecting optional library exclusions.
- 🙋 Artist requests workflow - non-admins raise requests, admins approve or reject with a single click, and every action is audited in real time.
- 🎧 Preview & context panels - launch YouTube or iTunes previews, inspect Last.fm biographies, and read key stats without leaving the grid.
- ⚡️ Real-time UX - Socket.IO keeps discovery progress, toast alerts, and button states in sync across every connected client.
- 👥 Role-based access - authentication, user management, profile controls for personal services, and admin-only settings live in one UI.
- 🔐 OIDC Single Sign-On - enable OpenID Connect for authentication, with optional group-based admin assignment and "OIDC-only" mode.
- 🛡️ Hardened configuration - atomic settings writes, locked-down file permissions, and CSRF-protected forms keep secrets safe.
- 🔔 Update & schema self-healing - footer badges surface new releases and the app backfills missing DB columns before loading users.
- 🐳 Docker-first deployment - official GHCR image, rootless-friendly UID/GID mapping, and automatic migrations on start.
- 🌐 Public API - REST API for integrating external tools such as custom dashboards (Documentation upcoming, for now study
/api/docs/on your instance).
How it works
┌──────────────────────┐ ┌──────────────────────┐
│ Lidarr (HTTP API) │◀──────▶│ Sonobarr backend │
│ - Artist catalogue │ │ Flask + Socket.IO │
│ - API key auth │ │ Last.fm + Deezer │
└──────────────────────┘ │ Worker threads │
└─────────┬────────────┘
│
▼
┌──────────────────────┐
│ Sonobarr web client │
│ Bootstrap + JS │
│ Admin UX │
└──────────────────────┘
- Sonobarr spins up with a persistent SQLite database inside the
config/volume. - Admins provide Lidarr + Last.fm credentials through the settings modal.
- When a user starts a discovery session, Sonobarr pulls artists from Lidarr, fans out to Last.fm, and streams cards back to the browser.
- Optional preview and biography data is enriched via YouTube/iTunes/MusicBrainz.
Quick start (Docker)
🐳 Requirements: Docker Engine ≥ 24, Docker Compose plugin, Last.fm API key, Lidarr API key.
- Create a working directory, cd into it, and make sure it's owned by the UID/GID the container will use (defaults to
1000:1000, configurable viaPUID/PGID). The container starts as root to fix permissions, then drops privileges toPUID/PGID:mkdir -p sonobarr && cd sonobarr sudo chown -R 1000:1000 . - Download the sample configuration:
curl -L https://raw.githubusercontent.com/Dodelidoo-Labs/sonobarr/develop/docker-compose.yml -o docker-compose.yml curl -L https://raw.githubusercontent.com/Dodelidoo-Labs/sonobarr/develop/.sample-env -o .env - Open
.envand populate at least these keys (setPUID/PGIDif you want a different container user):PUID=1000 PGID=1000 secret_key=change-me-to-a-long-random-string lidarr_address=http://your-lidarr:8686 lidarr_api_key=xxxxxxxxxxxxxxxxxxxxxxxx last_fm_api_key=xxxxxxxxxxxxxxxxxxxxxxxx last_fm_api_secret=xxxxxxxxxxxxxxxxxxxxxxxxAll keys in
.envare lowercase by convention; the app will happily accept uppercase equivalents if you prefer exporting variables. - Start Sonobarr:
docker compose up -d - Browse to
http://localhost:5000(or the host behind your reverse proxy) and sign in using the super-admin credentials defined in.env.
Reverse proxy deployment
The provided docker-compose.yml exposes port 5000. It is however a better practice to attache Sonobarr to an external network. To do so, add the network name and static IP so it fits your proxy stack (NGINX Proxy Manager, Traefik, etc.) to the docker compose file. No additional environment: stanza is needed - everything comes from the .env file referenced in env_file.
For example:
...
networks:
npm_proxy:
ipv4_address: 192.168.97.23
networks:
npm_proxy:
external: true
Updating
docker compose pull
docker compose up -d
The footer indicator will show a green dot when you are on the newest release and red when an update is available.
Environment reference
All variables can be supplied in lowercase (preferred for .env) or uppercase (useful for CI/CD systems). Defaults shown are the values Sonobarr falls back to when nothing is provided.
| Key | Default | Description |
| --- | --- | --- |
| secret_key (required) | - | Flask session signing key. Must be a long random string; store it in .env so sessions survive restarts. |
| lidarr_address | http://192.168.1.1:8686 | Base URL of your Lidarr instance. |
| lidarr_api_key | - | Lidarr API key for artist lookups and additions. |
| root_folder_path | /data/media/music/ | Default root path used when adding new artists in Lidarr (see issue #2). |
| lidarr_api_timeout | 120 | Seconds to wait for Lidarr before timing out requests. |
| quality_profile_id | 1 | Numeric profile ID from Lidarr (see issue #1). |
| metadata_profile_id | 1 | Numeric metadata profile ID. |
| fallback_to_top_result | false | When MusicBrainz finds no strong match, fall back to the first Lidarr search result. |
| search_for_missing_albums | false | Toggle Lidarr's "search for missing" flag when adding an artist. |
| dry_run_adding_to_lidarr | false | If true, Sonobarr will simulate additions without calling Lidarr. |
| last_fm_api_key | - | Last.fm API key for similarity lookups. |
| last_fm_api_secret | - | Last.fm API secret. |
| youtube_api_key | - | Enables YouTube previews in the "Listen" modal. Optional but recommended. |
| openai_api_key | - | Optional key for your OpenAI-compatible provider. Leave empty if your endpoint allows anonymous access. |
| openai_model | gpt-4o-mini | Override the model slug sent to the provider. |
| openai_api_base | - | Custom base URL for LiteLLM, Azure OpenAI, self-hosted Ollama gateways, etc. Blank uses the SDK default. **Must be complete base url such as http://IP:PORT/v1 for example. |
| openai_extra_headers | - | JSON object of additional headers sent with every LLM call (e.g., custom auth or routing hints). |
| openai_max_seed_artists | 5 | Maximum number of seed artists returned from each AI prompt. |
| similar_artist_batch_size | 10 | Number of cards sent per batch while streaming results. |
| auto_start | false | Automatically start a discovery session on load. |
| auto_start_delay | 60 | Delay (seconds) before auto-start kicks in. |
| sonobarr_superadmin_username | admin | Username of the bootstrap admin account. If unset or blank, Sonobarr uses admin. |
| sonobarr_superadmin_password | change-me | Password for the bootstrap admin. If unset or blank, Sonobarr uses change-me. |
| sonobarr_superadmin_display_name | Super Admin | Friendly display name shown in the UI. |
| sonobarr_superadmin_reset | false | Set to true and restart Sonobarr to reapply bootstrap credentials for the configured username (default admin). Set it back
Related Skills
node-connect
328.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
80.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
328.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
80.9kCommit, push, and open a PR
