You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove request body limit. (https://github.com/devcontainers/cli/pull/1141)
16
+
- Add BUILDKIT_INLINE_CACHE for container Feature path. (https://github.com/devcontainers/cli/pull/1135)
17
+
18
+
## January 2026
19
+
20
+
### [0.82.0]
21
+
- devcontainer commands now use current directory as default workspace folder when not specified (https://github.com/devcontainers/cli/pull/1104)
22
+
23
+
### [0.81.1]
24
+
- Update js-yaml and glob dependencies. (https://github.com/devcontainers/cli/pull/1128)
25
+
26
+
### [0.81.0]
27
+
- Add option to mount a worktree's common folder. (https://github.com/devcontainers/cli/pull/1127)
28
+
29
+
## December 2025
30
+
31
+
### [0.80.3]
32
+
- Fix: Skip download and injection of `dockerfile:1.4` syntax for Docker Engine versions [>=23.0.0](https://docs.docker.com/engine/release-notes/23.0/#2300)) - `dockerfile:1.4` or a subsequent version is already used by the docker engine package. (https://github.com/devcontainers/cli/pull/1113)
Copy file name to clipboardExpand all lines: README.md
+32-2Lines changed: 32 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,42 @@ This CLI is in active development. Current status:
22
22
23
23
## Try it out
24
24
25
-
We'd love for you to try out the dev container CLI and let us know what you think. You can quickly try it out in just a few simple steps, either by installing its npm package or building the CLI repo from sources (see "[Build from sources](#build-from-sources)").
25
+
We'd love for you to try out the dev container CLI and let us know what you think. You can quickly try it out in just a few simple steps, either by using the install script, installing its npm package, or building the CLI repo from sources (see "[Build from sources](#build-from-sources)").
26
26
27
-
To install the npm package you will need Python and C/C++ installed to build one of the dependencies (see, e.g., [here](https://github.com/microsoft/vscode/wiki/How-to-Contribute) for instructions).
27
+
### Install script
28
+
29
+
You can install the CLI with a standalone script that downloads a bundled Node.js runtime, so no pre-installed Node.js is required. It works on Linux and macOS (x64 and arm64):
30
+
31
+
```bash
32
+
curl -fsSL https://raw.githubusercontent.com/devcontainers/cli/main/scripts/install.sh | sh
33
+
```
34
+
35
+
Then add the install location to your PATH:
36
+
37
+
```bash
38
+
export PATH="$HOME/.devcontainers/bin:$PATH"
39
+
```
40
+
41
+
You can also specify a version, a custom install directory, or update/uninstall an existing installation:
42
+
43
+
```bash
44
+
# Install a specific version
45
+
sh install.sh --version 0.82.0
46
+
47
+
# Install to a custom directory
48
+
sh install.sh --prefix ~/.local/devcontainers
49
+
50
+
# Update to latest
51
+
sh install.sh --update
52
+
53
+
# Uninstall
54
+
sh install.sh --uninstall
55
+
```
28
56
29
57
### npm install
30
58
59
+
To install the npm package you will need Python and C/C++ installed to build one of the dependencies (see, e.g., [here](https://github.com/microsoft/vscode/wiki/How-to-Contribute) for instructions).
0 commit comments