cli
cli copied to clipboard
A reference implementation for the specification that can create and configure a dev container from a devcontainer.json.
When using a buildx builder for multi-arch building that uses actual native hosts (e.g. through kubernetes) to efficiently build on native CPUs, `devcontainer build` fails with ``` ERROR: oci for...
When launching a devcontainer, the docker command being logged is not the same command that is actually being passed to docker. This is due to the logger replacing everything after...
When running `devcontainer exec --workspace-folder . ls` everything works as expected. When running `devcontainer --workspace-folder . exec ls` the devcontainer CLI attempts to run `exec` in the container. It confuses...
Please add an option to allow reproducible builds. Buildkit should provide most building blocks: https://github.com/moby/buildkit/blob/master/docs/build-repro.md Of course the base `Dockerfile` author is responsible to make sure it allows reproducibility like...
I have a image (include docker cli, node, git and @devcontainers/cli). when I run this image (docker run --it -v /var/run/docker.sock:/var/run/docker.sock imageName) and use git inside to download the development...
ref: https://github.com/microsoft/vscode-docs/pull/6771
I'm attempting to test a new dev container template I'm creating. When using the `devcontainer templates apply --template-id 'ghcr.io/mcollier/logic-app-dev-container-template/logic-app-standard' ` command, the command appears to hang (doesn't exit successful ....
In situations where an internet connection is absent, it will be helpful to download features in advance and later unpack and use it.
**Steps to reproduce:** 1. I have installed Podman Desktop (since Ubuntu does not offer Podman 4.X out of the box) and installed a new WSL "podman-machine-default" 2. I cloned a...
I have a Dockerfile that needs to use an ARG in the FROM line: https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact ``` ARG VERSION=latest FROM busybox:$VERSION ARG VERSION ``` This works with docker build but fails...