Skip to content

Commit d799ae9

Browse files
Merge branch 'main' into dependabot/npm_and_yarn/npm_and_yarn-954d90908d
2 parents 5701eea + bda91a9 commit d799ae9

File tree

19 files changed

+2455
-31
lines changed

19 files changed

+2455
-31
lines changed

apps/web/src/app/(docs)/docs/sandbox/page.mdx

+22-6
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,16 @@ const sandbox = await Sandbox.create({ timeoutMs: 60_000 })
7070
// Retrieve sandbox information.
7171
const info = await sandbox.getInfo()
7272

73-
// Retrieve sandbox expiration date.
74-
const expirationDate = info.endAt
75-
console.log(expirationDate)
73+
console.log(info)
74+
75+
// {
76+
// "sandboxId": "iiny0783cype8gmoawzmx-ce30bc46",
77+
// "templateId": "rki5dems9wqfm4r03t7g",
78+
// "name": "base",
79+
// "metadata": {},
80+
// "startedAt": "2025-03-24T15:37:58.076Z",
81+
// "endAt": "2025-03-24T15:42:58.076Z"
82+
// }
7683
```
7784

7885
```python
@@ -81,9 +88,18 @@ from e2b_code_interpreter import Sandbox
8188
# Create sandbox with and keep it running for 60 seconds.
8289
sandbox = Sandbox(timeout=60)
8390

84-
# Retrieve sandbox expiration date.
85-
expiration_date = sandbox.get_info().end_at
86-
print(expiration_date)
91+
# Retrieve sandbox information.
92+
info = sandbox.get_info()
93+
94+
print(info)
95+
96+
# SandboxInfo(sandbox_id='ig6f1yt6idvxkxl562scj-419ff533',
97+
# template_id='u7nqkmpn3jjf1tvftlsu',
98+
# name='base',
99+
# metadata={},
100+
# started_at=datetime.datetime(2025, 3, 24, 15, 42, 59, 255612, tzinfo=tzutc()),
101+
# end_at=datetime.datetime(2025, 3, 24, 15, 47, 59, 255612, tzinfo=tzutc())
102+
# )
87103
```
88104
</CodeGroup>
89105

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
## e2b auth
2+
3+
4+
authentication commands
5+
6+
### Usage
7+
8+
```bash
9+
e2b auth [options] [command]
10+
```
11+
## e2b auth login
12+
13+
14+
log in to CLI
15+
16+
### Usage
17+
18+
```bash
19+
e2b auth login [options]
20+
```
21+
22+
23+
## e2b auth logout
24+
25+
26+
log out of CLI
27+
28+
### Usage
29+
30+
```bash
31+
e2b auth logout [options]
32+
```
33+
34+
35+
## e2b auth info
36+
37+
38+
get information about the current user
39+
40+
### Usage
41+
42+
```bash
43+
e2b auth info [options]
44+
```
45+
46+
47+
## e2b auth configure
48+
49+
50+
configure user
51+
52+
### Usage
53+
54+
```bash
55+
e2b auth configure [options]
56+
```
57+
58+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
## e2b sandbox
2+
3+
4+
work with sandboxes
5+
6+
### Usage
7+
8+
```bash
9+
e2b sandbox [options] [command]
10+
```
11+
## e2b sandbox connect
12+
13+
14+
connect terminal to already running sandbox
15+
16+
### Usage
17+
18+
```bash
19+
e2b sandbox connect [options] <sandboxID>
20+
```
21+
22+
23+
## e2b sandbox list
24+
25+
26+
list all running sandboxes
27+
28+
### Usage
29+
30+
```bash
31+
e2b sandbox list [options]
32+
```
33+
34+
35+
## e2b sandbox kill
36+
37+
38+
kill sandbox
39+
40+
### Usage
41+
42+
```bash
43+
e2b sandbox kill [options] [sandboxID]
44+
```
45+
46+
### Options
47+
48+
49+
- `-a, --all: kill all running sandboxes `
50+
51+
52+
## e2b sandbox spawn
53+
54+
55+
spawn sandbox and connect terminal to it
56+
57+
### Usage
58+
59+
```bash
60+
e2b sandbox spawn [options] [template]
61+
```
62+
63+
### Options
64+
65+
66+
- `-p, --path <path>: change root directory where command is executed to <path> directory `
67+
- `--config <e2b-toml>: specify path to the E2B config toml. By default E2B tries to find ./e2b.toml in root directory. `
68+
69+
70+
## e2b sandbox logs
71+
72+
73+
show logs for sandbox
74+
75+
### Usage
76+
77+
```bash
78+
e2b sandbox logs [options] <sandboxID>
79+
```
80+
81+
### Options
82+
83+
84+
- `--level <level>: filter logs by level (DEBUG, INFO, WARN, ERROR). The logs with the higher levels will be also shown. [default: INFO]`
85+
- `-f, --follow: keep streaming logs until the sandbox is closed `
86+
- `--format <format>: specify format for printing logs (json, pretty) [default: pretty]`
87+
- `--loggers [loggers]: filter logs by loggers. Specify multiple loggers by separating them with a comma. `
88+
89+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
## e2b template
2+
3+
4+
manage sandbox templates
5+
6+
### Usage
7+
8+
```bash
9+
e2b template [options] [command]
10+
```
11+
## e2b template build
12+
13+
14+
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.
15+
16+
### Usage
17+
18+
```bash
19+
e2b template build [options] [template]
20+
```
21+
22+
### Options
23+
24+
25+
- `-p, --path <path>: change root directory where command is executed to <path> directory `
26+
- `-d, --dockerfile <file>: specify path to Dockerfile. By default E2B tries to find e2b.Dockerfile or Dockerfile in root directory. `
27+
- `-n, --name <template-name>: specify sandbox template name. You can use the template name to start the sandbox with SDK. The template name must be lowercase and contain only letters, numbers, dashes and underscores. `
28+
- `-c, --cmd <start-command>: specify command that will be executed when the sandbox is started. `
29+
- `-t, --team <team-id>: specify the team ID that the operation will be associated with. You can find team ID in the team settings in the E2B dashboard (https://e2b.dev/dashboard?tab=team). `
30+
- `--config <e2b-toml>: specify path to the E2B config toml. By default E2B tries to find ./e2b.toml in root directory. `
31+
- `--cpu-count <cpu-count>: specify the number of CPUs that will be used to run the sandbox. The default value is 2. `
32+
- `--memory-mb <memory-mb>: specify the amount of memory in megabytes that will be used to run the sandbox. Must be an even number. The default value is 512. `
33+
- `--build-arg <args...>: specify additional build arguments for the build command. The format should be <varname>=<value>. `
34+
35+
36+
## e2b template list
37+
38+
39+
list sandbox templates
40+
41+
### Usage
42+
43+
```bash
44+
e2b template list [options]
45+
```
46+
47+
### Options
48+
49+
50+
- `-t, --team <team-id>: specify the team ID that the operation will be associated with. You can find team ID in the team settings in the E2B dashboard (https://e2b.dev/dashboard?tab=team). `
51+
52+
53+
## e2b template init
54+
55+
56+
create basic E2B Dockerfile (./e2b.Dockerfile) in root directory. You can then run e2b template build to build sandbox template from this Dockerfile
57+
58+
### Usage
59+
60+
```bash
61+
e2b template init [options]
62+
```
63+
64+
### Options
65+
66+
67+
- `-p, --path <path>: change root directory where command is executed to <path> directory `
68+
69+
70+
## e2b template delete
71+
72+
73+
delete sandbox template and e2b.toml config
74+
75+
### Usage
76+
77+
```bash
78+
e2b template delete [options] [template]
79+
```
80+
81+
### Options
82+
83+
84+
- `-p, --path <path>: change root directory where command is executed to <path> directory `
85+
- `--config <e2b-toml>: specify path to the E2B config toml. By default E2B tries to find ./e2b.toml in root directory. `
86+
- `-s, --select: select sandbox template from interactive list `
87+
- `-t, --team <team-id>: specify the team ID that the operation will be associated with. You can find team ID in the team settings in the E2B dashboard (https://e2b.dev/dashboard?tab=team). `
88+
- `-y, --yes: skip manual delete confirmation `
89+
90+
91+
## e2b template publish
92+
93+
94+
publish sandbox template
95+
96+
### Usage
97+
98+
```bash
99+
e2b template publish [options] [template]
100+
```
101+
102+
### Options
103+
104+
105+
- `-p, --path <path>: change root directory where command is executed to <path> directory `
106+
- `--config <e2b-toml>: specify path to the E2B config toml. By default E2B tries to find ./e2b.toml in root directory. `
107+
- `-s, --select: select sandbox template from interactive list `
108+
- `-t, --team <team-id>: specify the team ID that the operation will be associated with. You can find team ID in the team settings in the E2B dashboard (https://e2b.dev/dashboard?tab=team). `
109+
- `-y, --yes: skip manual publish confirmation `
110+
111+
112+
## e2b template unpublish
113+
114+
115+
unpublish sandbox template
116+
117+
### Usage
118+
119+
```bash
120+
e2b template unpublish [options] [template]
121+
```
122+
123+
### Options
124+
125+
126+
- `-p, --path <path>: change root directory where command is executed to <path> directory `
127+
- `--config <e2b-toml>: specify path to the E2B config toml. By default E2B tries to find ./e2b.toml in root directory. `
128+
- `-s, --select: select sandbox template from interactive list `
129+
- `-t, --team <team-id>: specify the team ID that the operation will be associated with. You can find team ID in the team settings in the E2B dashboard (https://e2b.dev/dashboard?tab=team). `
130+
- `-y, --yes: skip manual unpublish confirmation `
131+
132+

0 commit comments

Comments
 (0)