sidekick-docker 0.1.0 → 0.1.2
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 +13 -4
- package/dist/sidekick-docker.mjs +968 -92
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
A terminal dashboard for Docker. Manage containers, Compose projects, images, volumes, and networks — all from a single, keyboard-driven TUI.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
<p align="center">
|
|
10
|
+
<img src="../assets/sidekick_docker_cli.gif" alt="Sidekick Docker CLI Demo" width="800">
|
|
11
|
+
</p>
|
|
10
12
|
|
|
11
13
|
## Install
|
|
12
14
|
|
|
@@ -45,7 +47,7 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
45
47
|
|
|
46
48
|
| # | Panel | Shows | Detail Tabs |
|
|
47
49
|
|---|-------|-------|-------------|
|
|
48
|
-
| 1 | **Containers** | All containers with state, image, ports, uptime | Logs, Stats, Env, Config |
|
|
50
|
+
| 1 | **Containers** | All containers with state, image, ports, uptime | Logs, Stats, Env, Config, Patterns |
|
|
49
51
|
| 2 | **Services** | Compose projects and their services | Info, Logs |
|
|
50
52
|
| 3 | **Images** | Local images with tags, size, age | Info |
|
|
51
53
|
| 4 | **Volumes** | Named volumes with driver, mount path, usage status | Info |
|
|
@@ -78,6 +80,7 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
78
80
|
| Key | Action |
|
|
79
81
|
|-----|--------|
|
|
80
82
|
| `x` | Open context menu (actions for selected item) |
|
|
83
|
+
| `f` | Open log filter (when on Logs tab) |
|
|
81
84
|
| `/` | Open filter |
|
|
82
85
|
| `z` | Toggle expanded layout |
|
|
83
86
|
| `?` | Show help overlay |
|
|
@@ -105,8 +108,10 @@ The dashboard has 5 panels, each mapped to a number key:
|
|
|
105
108
|
|
|
106
109
|
## Features
|
|
107
110
|
|
|
108
|
-
- **Real-time log streaming** — follows container logs with
|
|
109
|
-
- **
|
|
111
|
+
- **Real-time log streaming** — follows container logs with token-level syntax highlighting (HTTP methods, status codes, URLs, IPs, timestamps, JSON keys)
|
|
112
|
+
- **Log search & filter** — press `f` on the Logs tab to search within log output with exact or fuzzy matching and match highlighting
|
|
113
|
+
- **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 usage charted as inline sparklines (60-sample history)
|
|
110
115
|
- **Interactive exec** — open a shell inside any running container
|
|
111
116
|
- **Compose detection** — automatically discovers projects from container labels, merges with compose file config
|
|
112
117
|
- **Filter** — press `/` to filter any list by name
|
|
@@ -127,6 +132,10 @@ sidekick-docker --socket tcp://192.168.1.100:2375
|
|
|
127
132
|
|
|
128
133
|
Full documentation is available at the [docs site](https://cesarandreslopez.github.io/sidekick-docker/).
|
|
129
134
|
|
|
135
|
+
## See Also
|
|
136
|
+
|
|
137
|
+
**[Sidekick Agent Hub](https://github.com/cesarandreslopez/sidekick-agent-hub)** — Multi-provider AI coding agent monitor. Real-time visibility into Claude Code, OpenCode, and Codex CLI sessions with token tracking, context management, and session intelligence. Available as a [TUI on npm](https://www.npmjs.com/package/sidekick-agent-hub) and a [VS Code extension](https://marketplace.visualstudio.com/items?itemName=CesarAndresLopez.sidekick-for-max).
|
|
138
|
+
|
|
130
139
|
## Contributing
|
|
131
140
|
|
|
132
141
|
Contributions are welcome! See [CONTRIBUTING.md](../CONTRIBUTING.md) for setup instructions and guidelines.
|