|
| 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