@e2b/cli 0.5.0 → 0.5.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 +1 -30
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ FROM ubuntu:22.04
|
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
3. Run `e2b build` inside the directory with the `Dockerfile` to create and
|
|
46
|
-
build the sandbox template. You will get *
|
|
46
|
+
build the sandbox template. You will get *_template ID_* that you use for
|
|
47
47
|
connecting to the sandbox via SDKs and for rebuilding the sandbox template
|
|
48
48
|
|
|
49
49
|
4. Use the **template ID** that you got during the `e2b build` with the Python
|
|
@@ -61,32 +61,3 @@ directory where the command will be called, without the need to call `cd`.
|
|
|
61
61
|
-V, --version Display E2B CLI version
|
|
62
62
|
-h, --help display help for command
|
|
63
63
|
```
|
|
64
|
-
|
|
65
|
-
```md
|
|
66
|
-
Usage: e2b template [options] [command]
|
|
67
|
-
|
|
68
|
-
Create sandbox templates from Dockerfiles by running e2b build then use our SDKs to create sandboxes from these templates.
|
|
69
|
-
|
|
70
|
-
Visit E2B docs (https://e2b.dev/docs) to learn how to create sandbox templates and start sandboxes.
|
|
71
|
-
|
|
72
|
-
Options:
|
|
73
|
-
-V, --version Display E2B CLI version
|
|
74
|
-
-h, --help display help for command
|
|
75
|
-
|
|
76
|
-
Commands:
|
|
77
|
-
login Log in to CLI
|
|
78
|
-
|
|
79
|
-
logout Log out of CLI
|
|
80
|
-
|
|
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
|
|
82
|
-
|
|
83
|
-
list|ls List sandbox templates
|
|
84
|
-
|
|
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
|
|
92
|
-
```
|