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

Related to https://github.com/devcontainers/cli/pull/759 Sorry it should not be the `project-folder`, but the `src` folder directly, for example: should be `./src/test/container-templates/example-templates-sets/simple/src` not `./src/test/container-templates/example-templates-sets/simple` So I rename it in order to avoid...

Using 0.58 version : 1. Create devcontainer.json ```javascript { "image":"mcr.microsoft.com/devcontainers/base:ubuntu", "features": { "ghcr.io/devcontainers/features/node:1": { "version": "16.18.1" }, "ghcr.io/devcontainers-contrib/features/bash-command:1": { "command": "pip3 install jinja2 PyYAML" } } } ``` 2. Build...

bug

Can someone help me find where I missed the proxy settings? I build a devcontainer behind a proxy without using "features". No issues, all work fine. But once I added...

As in the title, it would be great to have a `force` flag to force overwriting a version when pushing a feature to an OCI registry.

Related to this issue https://github.com/devcontainers/cli/issues/98 there still seems to be a problem for the global git config. My local git config is copied, but my global git config is not....

bug

Fixes #29 by checking if the current working directory contains a `.devcontainer` folder. I added this check after seeing #332 It looks like that the following two [`if`-statements](https://github.com/MunsMan/devcontainercli/blob/5c7077c67832614f0ec56bd5f3d76543e52c44f1/src/spec-node/devContainersSpecCLI.ts#L139-L144) are obsolete....

Recently, we integrated Dependabot and Dev Containers where we get PRs to update `versions` for stale Features. Similarly, for the devcontainer/images, we have been worried of bumping a major version...

Reported in https://github.com/devcontainers/features/issues/336#issuecomment-1360027876 ```jsonc // devcontainer.json { "image": "mcr.microsoft.com/dotnet/sdk:6.0-jammy", "features": { "ghcr.io/devcontainers/features/azure-cli:1": { "version": "latest", "installBicep": "true" }, "ghcr.io/devcontainers/features/common-utils:2": { "installZsh": true, "installOhMyZsh": true, "upgradePackages": true, "username": "vscode", "userUid": "1000",...

bug

Exploration around enforcing arbitrary policy files during container up. See `docs/experimental/policy.md` in this pull request for more info

Currently the --secrets-file sets the secret environment variables as `remoteEnv` which are only accessible by the vscode server process. A support for setting secrets as `containerEnv` shall ensure that all...