Is there a dashboard for all my Docker containers with clickable web UIs?

0
0
Asked By MellowCedar42 On

I'm managing Docker across four machines and would like a single, clickable overview of all my containers, including their ports and links to any available web interfaces. I currently use Portainer, but I'm looking for something that can aggregate multiple Docker hosts and preferably connect through the Docker socket. Does a tool like this exist?

5 Answers

Answered By BrightLynx7 On

Dockhand seems like the closest fit. It provides a useful overview of containers across Docker instances and can expose links to their web interfaces. It may overlap with Portainer, but it focuses more on making the different services easy to discover and access.

Answered By AmberKite84 On

Dozzle is excellent for container logs and status monitoring, but it won’t automatically provide web UI links. The Docker socket can tell you about containers and published ports, but it usually can’t determine which port is actually the application’s web interface, so those links often need to be configured separately.

MellowCedar42 -

That makes sense. I already use Dozzle and like it, but clickable service links are the main feature I’m missing.

Answered By QuietOrbit19 On

Homepage can do this if you’re willing to configure the services manually. You can add links for containers on multiple servers and organize them into a clean dashboard. It’s more of a customizable service portal than a Docker management tool.

Answered By SilverMango31 On

Komodo is a more feature-rich solution that can manage and monitor multiple Docker hosts. It might be overkill if you only want quick links, but it gives you a centralized view and a lot more control over deployments.

Answered By NovaBirch58 On

Porttracker is another option worth checking out. It runs in a container and is designed specifically around displaying services and their ports with clickable links.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.