We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbb9168 commit 436be08Copy full SHA for 436be08
1 file changed
README.md
@@ -18,7 +18,8 @@
18
```
19
2. Connect via SSH:
20
```sh
21
- ssh root@$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' runtime)
+ VM_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{break}}{{end}}' runtime)
22
+ ssh user@"$VM_IP"
23
24
25
## 📌 Use Cases
@@ -40,6 +41,7 @@
40
41
## 📂 Docs & Architecture
42
43
### System Diagram
44
+
45
```mermaid
46
flowchart TD
47
RCE -->|User,Password,SSHKeys| SetupCloudInit
@@ -49,6 +51,9 @@ flowchart TD
49
51
SetupNetwork -->|NetworkParams| StartVM
50
52
SetupDisk -->|DiskParams| StartVM
53
SetupCloudInit -->|CloudInitParams| StartVM
54
+ RC[[RuntimeContainer]] -->|NetworkParams| SetupNetwork
55
+ IC[[ImageContainer]] -->|BaseImage| SetupDisk
56
+ RC --> RCE([RuntimeContainerEnv])
57
58
59
### Details
0 commit comments