cli icon indicating copy to clipboard operation
cli copied to clipboard

A reference implementation for the specification that can create and configure a dev container from a devcontainer.json.

Results 155 cli issues
Sort by recently updated
recently updated
newest added

In our project we are building devcontainers with some packages from private registries preinstalled. We'd like to switch the installation process from dockerfiles to features, but we couldn't find an...

feature-request

Hi, im a bit confused on how to spin up a devcontainer from an already prebuilt image. I see no options to the `up` command to specify an image name....

When attempting to open an interactive shell session via the `devcontainer exec` sub-command, the resulting shell becomes unresponsive after invoking the first command in that shell, as can be viewed...

I think it might be useful to share : ```dockerfile FROM mcr.microsoft.com/devcontainers/base:0-alpine-3.18 RUN apk add --no-cache \ nodejs \ python3 \ npm \ make \ g++ \ docker-cli \ docker-cli-buildx...

To @chrmarti's attention: Full support to NODE_EXTRA_CA_CERTS is coming to Electron: https://github.com/electron/electron/issues/41590 I believe the following workaround won't be necessary anymore: https://github.com/devcontainers/cli/pull/559 We'll be able to have better support for...

debt

It is assumed and [documented in the specification](https://github.com/devcontainers/spec/blob/main/docs/specs/devcontainer-features-distribution.md?plain=1#L52) that the name of the directory that contains a Feature/Template matches the `id` property in its `devcontainer-(feature|template).json`. This patch enforces that behavior,...

I started integrate devcontainer/cli into Jenkins and referenced the [CI-Example](https://github.com/devcontainers/cli/blob/main/example-usage/ci-app-build-script/build-application.sh). below is reproduce steps (Update: t**he below is not reproduced when not using dockerCompose**): my .devcontainer : ```javascript { "name":...

under-discussion

If you try to open a project with a devcontainer that is actually a worktree, the started container does not work as expected. In a worktree, `.git` is not a...

feature-request

devcontainer CLI seems to detect the presence of docker-compose vs docker compose. When using docker compose, it then call "docker compose version --short" but in version 20.10.21 common on Ubuntu...

I am trying to understand how (and where) Devcontainers are cached by the CLI. When I make a change to `devcontainer.json`, VSCode prompts me to rebuild the container. I'm trying...

info-needed