fuzzaldrin
Members
-
Joined
-
Last visited
Solutions
-
fuzzaldrin's post in Starting docker service stops server from being accessible was marked as the answer🎉 RESOLVED 🎉
OK so I managed to pinpoint that the container was still registered in docker however without any access to the console or terminal I couldn't remove the container or the offending network.
I created a script in the User Scripts plugin to run every 2 minutes with the following:
#!/bin/bash
docker stop adguard
docker container rm adguard -f
docker network rm adguard_adguard
echo Finished
echo if an error shows above, nothing was removed
I started the docker service from the setting and could immediately see the permanent ping I had running on the unraid admin console drop, waited for the script to run on schedule and immediately I saw the ping successfully respond. I opened a new tab and loaded the unraid admin console/GUI successfully!
For the sake of anyone else that may run into this niche issue, I've included the output of the user script below, it shows the script run before the docker service was started and obviously failing to remove the network and container and then subsequently shows the script successfully run and delete the network and container:
Script Starting Jan 23, 2026 21:36.01
Full logs for this script are available at /tmp/user.scripts/tmpScripts/docker_remove_adguard/log.txt
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Finished
if an error shows above, nothing was removed
Script Finished Jan 23, 2026 21:36.01
Full logs for this script are available at /tmp/user.scripts/tmpScripts/docker_remove_adguard/log.txt
Script Starting Jan 23, 2026 21:38.01
Full logs for this script are available at /tmp/user.scripts/tmpScripts/docker_remove_adguard/log.txt
adguard
adguard
adguard_adguard
Finished
if an error shows above, nothing was removed
Script Finished Jan 23, 2026 21:38.01
Full logs for this script are available at /tmp/user.scripts/tmpScripts/docker_remove_adguard/log.txt