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 298 cli issues
Sort by recently updated
recently updated
newest added

With this [devcontainer.json](https://github.com/SwissDataScienceCenter/renku-data-services/blob/main/.devcontainer/devcontainer.json), devcontainer cli 0.66.0 and podman the image seems to build fine mostly but then the cli will prepend `localhost` to the image name and the build fails....

bug
podman

Hi, Is it possible to override CMD without having a Dockerfile? I'd like to use `image` & `overrideCommand: false` but also specify the command without unnecessarily writing a Dockerfile that...

info-needed

Hello devcontainers team, I've recently created a tool called `devcontainerize` (https://www.npmjs.com/package/devcontainerize, https://github.com/mathdroid/devcontainerize) that automatically detects a project's type and sets up the appropriate devcontainer configuration. The tool: 1. Detects the...

feature-request

Steps to reproduce: - Run devcontainer exec without pty, for instance: ``` devcontainer exec --container-id 1234abcdefgh -- sleep infinity > /dev/null 2>&1 ``` - Check that on the host machine...

bug
upstream

I have a script called `devshell` (relevant code below), which is intended to start the devcontainer if not always running, then give you a shell into the container. When I...

feature-request

Devcontainer uses both Docker and docker-compose to generate containers. The features should theoretically ignore in which mode the reference container is created, but this does not seem to be respected...

bug

We have the following `devcontainers.json` file at `.devcontainers/flask/devcontainers.json`: ``` { "name": "flask", "dockerComposeFile": [ "../../docker-compose.app.yaml", "../docker-compose.app.dev.yaml" ], "service": "flask", "workspaceFolder": "/home/jan", "features": {}, "customizations": { "vscode": { "settings": { ......

bug

The current implementation does not support default values in localEnv or containerEnv substitution that include a colon. Example: ``` "WEBSITE_URL": "${localEnv:WEBSITE_URL:https://example.com" ``` Current behavior: If `$WEBSITE_URL` is not present, the...

bug

I have devcontainer.json setup like this ``` "build": { "dockerfile": "${localWorkspaceFolder}/docker/development/Dockerfile", "context": "${localWorkspaceFolder}", "options": [ "$(awk '{ sub (\"\\\\\\\\$\", \" \"); printf \" --build-arg %s\", $0 } END { print...

feature-request

I can't get `devcontainer features generate-docs` to work, I've tried every combo of switches and arguments I can think of, and they don't help. It seems to treat everything as...

bug