dockza.app 0.2.0 → 0.2.1
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 +10 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
-
<a href="https://www.npmjs.com/package/dockza"><img src="https://img.shields.io/npm/v/dockza.
|
|
12
|
+
<a href="https://www.npmjs.com/package/dockza.app"><img src="https://img.shields.io/npm/v/dockza.app" alt="npm version"></a>
|
|
13
13
|
<a href="https://github.com/shandyba/dockza/actions/workflows/ci.yml"><img src="https://github.com/shandyba/dockza/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
|
|
14
|
-
<a href="https://nodejs.org/"><img src="https://img.shields.io/node/v/dockza.
|
|
14
|
+
<a href="https://nodejs.org/"><img src="https://img.shields.io/node/v/dockza.app" alt="Node"></a>
|
|
15
15
|
<a href="./LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a>
|
|
16
16
|
</p>
|
|
17
17
|
|
|
@@ -22,16 +22,22 @@
|
|
|
22
22
|
Run it without installing:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npx dockza
|
|
25
|
+
npx dockza.app
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
Or install globally:
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
npm install -g dockza
|
|
31
|
+
npm install -g dockza.app
|
|
32
32
|
dockza
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
> **Note on the name.** The npm package is published as **`dockza.app`**, matching
|
|
36
|
+
> the project homepage — the plain `dockza` name is rejected by npm's automated
|
|
37
|
+
> typosquatting filter for being too close to an unrelated existing package.
|
|
38
|
+
> Only the install command carries the suffix; once installed, the executable is
|
|
39
|
+
> just `dockza`.
|
|
40
|
+
|
|
35
41
|
## Features
|
|
36
42
|
|
|
37
43
|
- **Compose-aware Stacks view** — containers grouped by project with running / errored / stopped counts, collapsible per stack.
|
package/package.json
CHANGED