mirror of
https://github.com/kiranshila/Doplarr.git
synced 2026-07-27 15:52:32 -04:00
Invalid webhook in docker logs when submitting a request - Server did not respond in Discord #109
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @DFC72 on GitHub (Jun 8, 2025).
Describe the bug
When going into the discord channel and submitting a request for Movie or TV Show, the bot returns an error "The Application did not respond". In the docker logs, there is an error code: 10015 message: "Unknown Webhook"
Expected behavior
Bot performs search and returns suggested responses.
Screenshots
Logs
Please copy out the log in it's entirety, please make sure to hide any potential secrets/API keys - although they should be censored via the logging program.
Additional context
Doplarr is running in lsio docker container, and I have also tried the hotio.dev container with the same results.
I have created the application in the Discord dev console, copied the application ID to my docker compose file, and underOAuth2, selected the bot and applications.commands scopes then generated the URL and put it into my browser to add the application to my Discord server. No issues there.
Docker compose file uses the IP address and port # of the Overseer container. The docker host has a static IP on my local network.
My Compose looks like the following:
services:
doplarr:
image: lscr.io/linuxserver/doplarr:latest
container_name: doplarr2
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- DISCORD__TOKEN=[REMOVED]
- OVERSEERR__API=[REMOVED]
- OVERSEERR__URL=http://192.168.1.35:5055
- RADARR__API=
- RADARR__URL=
- SONARR__API=
- SONARR__URL=
- DISCORD__MAX_RESULTS=25 #optional
- DISCORD__REQUESTED_MSG_STYLE=:plain #optional
- SONARR__QUALITY_PROFILE= #optional
- RADARR__QUALITY_PROFILE= #optional
- SONARR__ROOTFOLDER= #optional
- RADARR__ROOTFOLDER= #optional
- SONARR__LANGUAGE_PROFILE= #optional
- OVERSEERR__DEFAULT_ID=[REMOVED]
- PARTIAL_SEASONS=true #optional
- LOG_LEVEL=:info #optional
- JAVA_OPTS= #optional
volumes:
- /mnt/docker/doplarr2/config:/config
restart: unless-stopped
This was working previously, so I'm not sure what's broken?
@mat7thew commented on GitHub (Jul 19, 2025):
I also had this error but was able to resolve it by sorting my volume path location. Not that yours is incorrect but just to give some insight