cli
cli copied to clipboard
A reference implementation for the specification that can create and configure a dev container from a devcontainer.json.
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 5 to 6. Release notes Sourced from actions/setup-node's releases. v6.0.0 What's Changed Breaking Changes Limit automatic caching to npm, update workflows and documentation by @priyagupta108 in actions/setup-node#1374...
This adds support for using Docker build secrets in devcontainer features, allowing sensitive information to be used during the build process without being included in the final image. Fixes: #1077
Is there a way for users to provide custom, additional args to the docker run command? ```bash export DOCKER_EXTRA_ARGS='--mount source=my-data-volume,target=/app/data' # results in the following being called when launching a...
I specified the runArgs as following: ``` runArgs: [ "--network=host" ], ``` But the output in the console is as following: ``` [33764 ms] Start: Run: docker run --sig-proxy=false -a...
I'm using Podman Desktop 1.22 on Windows with a WSL v2 podman machine. I started off using devcontainers inside vscode, but I'm getting the same error when using the devcontainers...
I want to specify the Docker Compose-based spec for the devcontainer in a separate folder as here: https://code.visualstudio.com/docs/devcontainers/create-dev-container#_alternative-repository-configuration-folders However, `docker-compose.yml` (and any other file except the `devcontainer.json`) does not seem...
https://docs.docker.com/reference/compose-file/build/#using-build-and-image https://docs.docker.com/reference/compose-file/services/#image > [Using build and image](https://docs.docker.com/reference/compose-file/build/#using-build-and-image) When Compose is confronted with both a build subsection for a service and an image attribute, it follows the rules defined by the...
Hello, would it make sense to explain in a paragraph to an outsider when a dev container is to be preferred to using [Mise](https://mise.jdx.dev/) (or its predecessors like `asdf`) to...
It seems that the 'exec' command is only allowed as the first parameter. ``` devcontainer --workspace-folder . exec ls OCI runtime exec failed: exec failed: unable to start container process:...
## Summary This PR fix missing platform arguments (e.g., `$TARGETARCH`) for multi-platform builds. ## Key Changes - **Fixed Argument Substitution:** Platform arguments are now resolved within the `findBaseImage` function based...