From 84e608eab15424d59839264fabc9674527c9201e Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Tue, 15 Jul 2025 11:11:01 -0700 Subject: [PATCH] docs: adds dtop to menu --- docs/.vitepress/config.ts | 1 + docs/guide/dtop.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 docs/guide/dtop.md diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index b0296e9a..f6d55de7 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -57,6 +57,7 @@ export default defineConfig({ items: [ { text: "What is Dozzle?", link: "/guide/what-is-dozzle" }, { text: "Getting Started", link: "/guide/getting-started" }, + { text: "Introducing dtop 🚀", link: "/guide/dtop" }, ], }, { diff --git a/docs/guide/dtop.md b/docs/guide/dtop.md new file mode 100644 index 00000000..b6ad75e5 --- /dev/null +++ b/docs/guide/dtop.md @@ -0,0 +1,21 @@ +--- +title: Introducing dtop +--- + +# What is dtop? + +`dtop` is a command-line tool that provides a real-time view of the Docker containers running on your system. It is a lightweight alternative to the `docker ps` command, and it is designed to be used in a terminal or command prompt. `dtop` supports connecting to multiple hosts via `ssh`, `tcp` or `unix socket`. It also integrates with Dozzle by providing a quick way to open logs quickly. + +![dtop screenshot](https://github.com/amir20/dtop/raw/master/demo.gif) + +## Installation + +Full installation instructions can be found at [https://github.com/amir20/dtop](https://github.com/amir20/dtop?tab=readme-ov-file#installation). You can also install using brew: + +```bash +brew install amir20/homebrew-dtop/dtop +``` + +## Project Status + +`dtop` is a new project and not feature rich as Dozzle. However, I am actively working on adding more features. I use it personally to monitor all my containers across multiple hosts on the command line. If you have suggestions then please open issues at [https://github.com/amir20/dtop/issues](https://github.com/amir20/dtop/issues).