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

If `Dockerfile` and `devcontainer.json` in `D:` drive on Windows (that is `D:\.devcontainer\Dockerfile` & `D:\.devcontainer\devcontainer.json`) `D:\.devcontainer\Dockerfile` ```dockerfile ARG VARIANT="bullseye" FROM mcr.microsoft.com/devcontainers/rust:1-${VARIANT} ``` `D:\.devcontainer\devcontainer.json` ```dockerfile { "name": "Sample", "build": { "dockerfile": "Dockerfile"...

bug

I'm attempting to use `devcontainer` but it is difficult because even in JSON mode, the tool prints Node warnings to stdout: ``` $ devcontainer --log-format=json read-configuration | jq parse error:...

bug

I'm using a devcontainer relying on a docker-compose.yml, this is an extract of the docker-compose.yml: ``` version: "3.7" services: php: build: context: ./Application dockerfile: deploy/Dockerfile target: php-dev volumes: - ./Application/deploy/php.d/99-ini-overrides.ini:/usr/local/etc/php/conf.d/99-ini-overrides.ini...

info-needed

It would be a great and useful ability to add extra args to docker build command. It seems there is already a variable `additionalBuildArgs` in the code for this at...

feature-request

I suspect this solution may be too naïve, but it does solve the scenario identified in #239. At some level, it does make sense to me that callers of `inspectImageInRegistry`...

`devcontainer exec` tries to use different container than the response of `devcontainer up`. ``` $ devcontainer up --workspace-folder . [14 ms] @devcontainers/cli 0.12.1. {"outcome":"success","containerId":"66d0453b1f8340282242c2efeff1e79af03734b45d56cfc7630b5b92b108880e","composeProjectName":"masked","remoteUser":"vscode","remoteWorkspaceFolder":"/workspace"} $ devcontainer exec --workspace-folder . pwd...

bug

Add option to controller where temporary folders are created, to allow Rancher Desktop compatibility. Rancher can't mount whole /tmp system folder. So having single /tmp/devcontainers/ where all other folders like...

feature-request

Right now, `--workspace-folder` is a mandatory argument to `exec`. This makes sense if the devcontainer was started from the environment that's running the CLI, from a locally-accessible filesystem. However, if...

feature-request

Hello! I'm having difficulty figuring out how `devcontainer features test` can capture errors that occur as part of the build. I'm working on a feature that will installed PowerShell resources,...

Given a `.devcontainer/Dockerfile`: ```dockerfile FROM ubuntu as stage1 RUN apt-get update && apt-get install -y vim FROM scratch as stage2 COPY --from=stage1 / / RUN which vim ``` and a...

bug