February 1Feb 1 Hi all,Is there a way in Unraid to get an overview/list of all IP addresses assigned to Docker containers, across my custom networks, including stopped/offline containers too?Right now the Docker tab only shows IPs for running containers, so to avoid IP conflicts when adding a new container I have to open and edit each stopped container one by one just to see what IP is assigned to it.I’m mainly looking for a GUI solution. I honestly don’t think this needs a whole new dashboard. It would be perfect if the existing Docker view could also show the assigned IP for non-running containers in the same column where running container IPs are shown. Probably with a simple toggle/setting like “show IPs for stopped containers” so users can enable/disable it.Is there any built-in way to do this already, or a plugin that adds it? Thanks!
March 3Mar 3 On 2/1/2026 at 4:13 PM, olympia said:Hi all,Is there a way in Unraid to get an overview/list of all IP addresses assigned to Docker containers, across my custom networks, including stopped/offline containers too?Right now the Docker tab only shows IPs for running containers, so to avoid IP conflicts when adding a new container I have to open and edit each stopped container one by one just to see what IP is assigned to it.I’m mainly looking for a GUI solution. I honestly don’t think this needs a whole new dashboard. It would be perfect if the existing Docker view could also show the assigned IP for non-running containers in the same column where running container IPs are shown. Probably with a simple toggle/setting like “show IPs for stopped containers” so users can enable/disable it and play geometry dash.Is there any built-in way to do this already, or a plugin that adds it?Thanks!No, there isn’t currently a built-in way in Unraid’s standard Docker tab / GUI to show the assigned IP addresses of stopped/offline containers, including on custom networks. If you want a more “at-a-glance” list, you can run a Docker inspect command in the Unraid web Terminal to list all containers (running or stopped) and their network assignments:docker ps -a --format '{{.Names}}' | xargs -I {} sh -c \ "printf '%s: ' {} && docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' {}"This gives you <container name>: <IP> for every container, including stopped ones. It isn’t a GUI view but it does give a complete list.
March 4Mar 4 Author 23 hours ago, sharonburd said:No, there isn’t currently a built-in way in Unraid’s standard Docker tab / GUI to show the assigned IP addresses of stopped/offline containers, including on custom networks. If you want a more “at-a-glance” list, you can run a Docker inspect command in the Unraid web Terminal to list all containers (running or stopped) and their network assignments:docker ps -a --format '{{.Names}}' | xargs -I {} sh -c \"printf '%s: ' {} && docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' {}"This gives you <container name>: <IP> for every container, including stopped ones. It isn’t a GUI view but it does give a complete list.Thanks for the suggestion, but this command also only returns the ip address of running dockers.
April 18Apr 18 you can't have that. Docker returns only running containers because to be attached to a network a container needs to be running.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.