dumb
dumb copied to clipboard
Dumb returns "Not Found" on all Genius requests
When going to any route, search or lyrics on Dumb returns a 500 error and prints "Not Found" in the logs.
Compose File
services:
dumb:
image: ghcr.io/rramiachraf/dumb:latest
container_name: dumb
restart: unless-stopped
environment:
PROXY: http://xxx:8191
flaresolverr:
image: flaresolverr/flaresolverr:latest
restart: unless-stopped
container_name: flaresolverr
environment:
LOG_LEVEL: info
LOG_HTML: false
CAPTCHA_SOLVER: none
TZ: ETC/GMT-2
ports:
- 8191:8191
Errors
time=2025-08-14T21:53:37.834Z level=INFO msg="using a custom proxy for requests"
time=2025-08-14T21:53:37.834Z level=INFO msg="using default port 5555"
time=2025-08-14T21:53:37.835Z level=INFO msg="server is listening on port 5555"
time=2025-08-14T21:53:49.509Z level=ERROR msg="Get \"https://genius.com/api/search/multi?q=famous\": Not Found"
Opening the link in a browser works, however:
@spifory looks like container can't access to proxy port, try to replace xxx with flaresolverr and remove ports property at flaresolverr (you don't need it)