You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/more/dashboard.md
+15-7Lines changed: 15 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,6 @@ title: Dashboard
4
4
5
5
# Dashboard
6
6
7
-
::: warning Pre-release
8
-
9
-
Dashboard is vailable only on v0.6.0 RC
10
-
11
-
:::
12
-
13
7
Dockform includes a fullscreen terminal dashboard that gives you a live, at‑a‑glance view of your stacks, containers, and logs.
14
8
15
9
## Launching
@@ -49,9 +43,23 @@ Headers highlight the active pane with a subtle gradient. Colors are tuned for a
49
43
-`→/l/pgdn`, `←/h/pgup` Next/previous page
50
44
-`Tab` Cycle pane (Stacks ↔ Logs)
51
45
-`Enter` Focus logs (from Stacks)
46
+
-`Ctrl+P` Open command palette (Pause/Restart/Stop/Delete selected container)
52
47
53
48
When filtering, type to search across stack, service, container, and image fields. Press `Esc` to leave filter mode.
54
49
50
+
## Command Palette
51
+
52
+
Press `Ctrl+P` to open a floating command palette centered over the dashboard. The palette shows the currently selected container and offers the following operations:
53
+
54
+

55
+
56
+
- Pause — runs `docker container pause` for the container
57
+
- Restart — runs `docker container restart`
58
+
- Stop — runs `docker container stop`
59
+
- Delete — force removes the container with `docker container rm -f`
60
+
61
+
Use the arrow keys to highlight a command, `Enter` to execute it, and `Esc` to close the palette without acting. If no container is selected, the palette indicates it and actions are disabled. After a command runs, the regular status polling and logs stream reflect the new container state automatically.
62
+
55
63
## What You See
56
64
57
65
- Status bullets per service
@@ -71,6 +79,7 @@ When filtering, type to search across stack, service, container, and image field
71
79
- Selecting an item in Stacks automatically starts tailing that container’s logs in the center pane (with a small debounce to avoid rapid restarts while navigating)
72
80
- Press `Enter` to bring focus to the Logs pane; use the same navigation keys to scroll
73
81
- Press `Tab` to toggle focus between Stacks and Logs
82
+
- Command palette actions operate on the currently selected container; once Docker finishes the operation, statuses and attachments refresh on the next poll
74
83
75
84
## Data Flow and Sources
76
85
@@ -99,4 +108,3 @@ Under the hood, the dashboard combines static data from Compose with live inform
99
108
- Volumes/networks are shown from the context; only attachments for the selected entry are highlighted
0 commit comments