@e2b/cli 0.1.12 → 0.1.14
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 +17 -15
- package/dist/index.js +93 -90
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -57,34 +57,36 @@ FROM ubuntu:22.04
|
|
|
57
57
|
All commands can be called with a `--path <path-to-dir>` flag that changes the
|
|
58
58
|
directory where the command will be called, without the need to call `cd`.
|
|
59
59
|
|
|
60
|
-
```
|
|
60
|
+
```md
|
|
61
61
|
-V, --version Display E2B CLI version
|
|
62
62
|
-h, --help display help for command
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
```
|
|
65
|
+
```md
|
|
66
66
|
Usage: e2b template [options] [command]
|
|
67
67
|
|
|
68
|
-
Create sandbox templates from Dockerfiles by running e2b build then use our SDKs to create
|
|
69
|
-
sandboxes from these templates.
|
|
68
|
+
Create sandbox templates from Dockerfiles by running e2b build then use our SDKs to create sandboxes from these templates.
|
|
70
69
|
|
|
71
|
-
Visit E2B docs (https://e2b.dev/docs) to learn how to create sandbox templates
|
|
72
|
-
and start sandboxes.
|
|
70
|
+
Visit E2B docs (https://e2b.dev/docs) to learn how to create sandbox templates and start sandboxes.
|
|
73
71
|
|
|
74
72
|
Options:
|
|
75
|
-
-
|
|
73
|
+
-V, --version Display E2B CLI version
|
|
74
|
+
-h, --help display help for command
|
|
76
75
|
|
|
77
76
|
Commands:
|
|
78
|
-
|
|
79
|
-
./Dockerfile in root directory. By default the root directory is the
|
|
80
|
-
current working directory. This command also creates e2b.toml config
|
|
77
|
+
login Log in to CLI
|
|
81
78
|
|
|
82
|
-
|
|
79
|
+
logout Log out of CLI
|
|
83
80
|
|
|
84
|
-
|
|
81
|
+
build|bd [options] [id] Build sandbox template defined by `./e2b.Dockerfile` or `./Dockerfile` in root directory. By default the root directory is the current working directory. This command also creates `e2b.toml` config
|
|
85
82
|
|
|
86
|
-
|
|
87
|
-
e2b build to build sandbox template from this Dockerfile
|
|
83
|
+
list|ls List sandbox templates
|
|
88
84
|
|
|
89
|
-
|
|
85
|
+
shell|sh [options] [id] Connect terminal to sandbox
|
|
86
|
+
|
|
87
|
+
init|it [options] Create basic E2B Dockerfile (`./e2b.Dockerfile`) in root directory. You can then run e2b build to build sandbox template from this Dockerfile
|
|
88
|
+
|
|
89
|
+
delete|dl [options] [id] Delete sanbdox template and e2b.toml config
|
|
90
|
+
|
|
91
|
+
help [command] display help for command
|
|
90
92
|
```
|