-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add illustrations, to show files and ports
- Loading branch information
1 parent
bf192ce
commit 4a5c295
Showing
5 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
digraph G { | ||
rankdir=LR; | ||
graph [fontname = "Source Sans Pro"]; | ||
node [fontname = "Source Sans Pro"]; | ||
edge [fontname = "Source Sans Pro"]; | ||
|
||
local [ label="Local\n/path" ]; | ||
machine [ label="Machine\n/path" ]; | ||
container [ label="Container\n/path" ]; | ||
subgraph cluster_VM { | ||
rankdir=LR; | ||
style=filled; | ||
color=lightskyblue; | ||
machine container; | ||
label = "VirtualBox"; | ||
} | ||
local -> machine [ label="scp" ]; | ||
machine -> local [ label="sshfs" ]; | ||
machine -> container [ label="volume" ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
digraph G { | ||
rankdir=LR; | ||
graph [fontname = "Source Sans Pro"]; | ||
node [fontname = "Source Sans Pro"]; | ||
edge [fontname = "Source Sans Pro"]; | ||
|
||
local [ label="Local\nport" ]; | ||
machine [ label="Machine\nport" ]; | ||
container [ label="Container\nport" ]; | ||
subgraph cluster_VM { | ||
rankdir=LR; | ||
style=filled; | ||
color=lightskyblue; | ||
machine container; | ||
label = "VirtualBox"; | ||
} | ||
local -> machine [ label="ssh -L" ]; | ||
machine -> local [ label="ip" ]; | ||
machine -> container [ label="publish" ]; | ||
} |