sidekick-docker 0.1.4 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/dist/sidekick-docker.mjs +17067 -403
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/sidekick-docker)
|
|
4
4
|
[](https://www.npmjs.com/package/sidekick-docker)
|
|
5
5
|
[](https://github.com/cesarandreslopez/sidekick-docker/blob/main/LICENSE)
|
|
6
|
+
[](https://deepwiki.com/cesarandreslopez/sidekick-docker)
|
|
6
7
|
|
|
7
8
|
A terminal dashboard for Docker. Manage containers, Compose projects, images, volumes, and networks — all from a single, keyboard-driven TUI.
|
|
8
9
|
|
|
@@ -47,9 +48,9 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
47
48
|
|
|
48
49
|
| # | Panel | Shows | Detail Tabs |
|
|
49
50
|
|---|-------|-------|-------------|
|
|
50
|
-
| 1 | **Containers** | All containers with state, image, ports, uptime | Logs, Stats, Env, Config, Patterns |
|
|
51
|
+
| 1 | **Containers** | All containers with state, image, ports, uptime | Logs, Stats, Env, Config, Files, Patterns |
|
|
51
52
|
| 2 | **Services** | Compose projects and their services | Info, Logs |
|
|
52
|
-
| 3 | **Images** | Local images with tags, size, age | Info |
|
|
53
|
+
| 3 | **Images** | Local images with tags, size, age | Info, Layers |
|
|
53
54
|
| 4 | **Volumes** | Named volumes with driver, mount path, usage status | Info |
|
|
54
55
|
| 5 | **Networks** | Docker networks with driver, scope, connected containers | Info |
|
|
55
56
|
|
|
@@ -111,7 +112,9 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
111
112
|
- **Real-time log streaming** — follows container logs with token-level syntax highlighting (HTTP methods, status codes, URLs, IPs, timestamps, JSON keys)
|
|
112
113
|
- **Log search & filter** — press `f` on the Logs tab to search within log output with exact or fuzzy matching and match highlighting
|
|
113
114
|
- **Log analytics** — severity count badges, severity sparkline over time, and pattern clustering that groups similar logs into templates with `<*>` wildcards
|
|
114
|
-
- **Live stats with sparklines** — CPU, memory, and log severity
|
|
115
|
+
- **Live stats with sparklines** — CPU, memory, network I/O, block I/O, and log severity charted as inline sparklines (60-sample history)
|
|
116
|
+
- **Filesystem inspector** — view all filesystem changes inside containers (added/changed/deleted files)
|
|
117
|
+
- **Image layer explorer** — inspect image layer history with sizes and Dockerfile instructions
|
|
115
118
|
- **Interactive exec** — open a shell inside any running container
|
|
116
119
|
- **Compose detection** — automatically discovers projects from container labels, merges with compose file config
|
|
117
120
|
- **Filter** — press `/` to filter any list by name
|