I built a visual Docker dashboard with TypeScript, Svelte, and Three.js
I built a 3D Docker dashboard for fun, and it turned into DockScope I built DockScope as a fun side project because I wanted a more visual way to inspect Docker services, dependencies, and runtime ...

Source: DEV Community
I built a 3D Docker dashboard for fun, and it turned into DockScope I built DockScope as a fun side project because I wanted a more visual way to inspect Docker services, dependencies, and runtime state. Most of the time, working with Docker means jumping between commands like docker ps, docker logs, and docker inspect. That works, but it is not always the easiest way to understand a stack as a whole. So I built a browser-based dashboard that lets you explore a Docker environment through: a 3D dependency graph live metrics log streaming embedded terminal access and common container actions Why I built it Mostly because I thought Docker tooling could be more visual and more interactive. I wanted something that made it easier to answer questions like: what depends on what? which container is unhealthy? where should I look first when something breaks? Tech stack DockScope is built with: TypeScript Svelte Three.js Docker tooling on the backend (dockerode) What I liked building most The mos