cli
cli copied to clipboard
A reference implementation for the specification that can create and configure a dev container from a devcontainer.json.
I frequently run `devcontainer exec` as part of my command line-based development workflow. Since I'm already in the workspace directory (folder) when running the command, having to specify `--workspace-folder .`...
The following build command results in images lacking manifests. However, the cache image does have a manifest. ```shell $ devcontainer build \ --workspace-folder . \ --cache-from registry.gitlab.com/jshbrntt/devcontainers/base/cache:latest \ --cache-to registry.gitlab.com/jshbrntt/devcontainers/base/cache:latest...
Using a `Dockerfile` works in a corporate network because the `syntax=` definition is used correctly. But when using the `image` directive (because a `build` with a `Dockerfile` is not required),...
OS: Mac OS 13.1 VS Code: 1.71.1 Dev Containers extension: 0.279.0 Dev container CLI: 0.29.0 I submitted [an issue](https://github.com/microsoft/vscode-remote-release/issues/7987) on the VS Code remote extension repo but it wasn't getting...
I've encountered a strange and hard-to-debug behavior when using multiple `devcontainer.json` files in a monorepo setup. ### Steps to Reproduce 1. Create a new directory (not yet initialized as a...
Hi, I have a devcontainer.json file referring to 2 features, feature Bar and feature Baz. The features are hosted in an OCI registry. I am using vscode 1.97 and devcontainer...
When a devcontainer is built off an image without a devcontainer.metadata label the resulting image will have a devcontainer.metadata label that is a dictionary instead of a list(assuming there aren't...
For some reason, the devcontainer cli only works when called from the context of a windows path. When called from home `~`, it hangs forever. This was however working just...
This PR fixes an issue where environment variables fail to read when using fish shell in dev containers. ## Problem Fish shell was interpreting the `-n` flag in `echo -n`...