@docker-digital/dockernet-agent 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/README.md +14 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,26 +7,26 @@ NestJS-based agent application for DockerNet system.
7
7
  ### Global Installation (Recommended)
8
8
 
9
9
  ```bash
10
- npm install -g @dockernet/agent
10
+ npm install -g @docker-digital/dockernet-agent
11
11
  ```
12
12
 
13
- Sau khi cài đặt, bạn có thể chạy `agent` hoặc `dockernet-agent` từ bất kỳ đâu:
13
+ Sau khi cài đặt, bạn có thể chạy `dockernet-agent` từ bất kỳ đâu:
14
14
 
15
15
  ```bash
16
16
  # Set API key
17
- agent --apiKey YOUR_API_KEY
17
+ dockernet-agent --apiKey YOUR_API_KEY
18
18
 
19
19
  # Show config
20
- agent --config
20
+ dockernet-agent --config
21
21
 
22
22
  # List profiles
23
- agent --profiles
23
+ dockernet-agent --profiles
24
24
 
25
25
  # Run as daemon
26
- agent --run
26
+ dockernet-agent --run
27
27
 
28
28
  # Stop daemon
29
- agent --stop
29
+ dockernet-agent --stop
30
30
  ```
31
31
 
32
32
  ### Local Installation
@@ -41,25 +41,25 @@ npm install
41
41
 
42
42
  ```bash
43
43
  # Set API key
44
- agent --apiKey YOUR_API_KEY
44
+ dockernet-agent --apiKey YOUR_API_KEY
45
45
 
46
46
  # Show config
47
- agent --config
47
+ dockernet-agent --config
48
48
 
49
49
  # List profiles
50
- agent --profiles
50
+ dockernet-agent --profiles
51
51
 
52
52
  # Show version
53
- agent --version
53
+ dockernet-agent --version
54
54
 
55
55
  # Run as daemon
56
- agent --run
56
+ dockernet-agent --run
57
57
 
58
58
  # Stop daemon
59
- agent --stop
59
+ dockernet-agent --stop
60
60
 
61
61
  # Restart daemon
62
- agent --restart
62
+ dockernet-agent --restart
63
63
  ```
64
64
 
65
65
  ### Local Development Commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docker-digital/dockernet-agent",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "DockerNet Agent - NestJS Agent Application",
5
5
  "author": "Huynh Cong Thuc <huynhthuchct@gmail.com>",
6
6
  "license": "MIT",