Docker container manager in the GNOME top panel. Monitor running containers, start/stop/restart individually or all at once, open a shell, view live logs, inspect container details with live CPU/RAM stats, and manage Docker Compose groups — all without leaving your desktop.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-P-007 warning
JavaScript files should be reachable from extension.js or prefs.js
Some JavaScript files are not reachable from `extension.js` or `prefs.js` imports.
Don't include unnecessary files
container-details.js
log-viewer.js
EGO-L-003 warning
signals connected by extension should be disconnected in disable()
Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.
extension.js:98
this.menu.connect('open-state-changed', (_menu, open) => {
if (open) {
this._searchEntry.set_text('');
this._refresh();
}
})
EGO-L-004 warning
main loop sources should be removed in disable()
Main loop sources assigned in `enable()` are missing matching removals in `disable()` or its helper methods.
extension.js:636
GLib.timeout_add(GLib.PRIORITY_DEFAULT, ms, () => {
this._refresh();
return GLib.SOURCE_REMOVE;
})
| Version | Status |
|---|---|
| 1.0.0 (2) | Unreviewed |
| 1.0.0 (1) | Rejected |