microsoft / microsoft/vscode-remote-release
Cannot clone repository into container volume with "features", with zscaler
Nobody has claimed this yet.
- Dominant language
- Dockerfile
- Stars
- 4.2k
- Forks
- 470
- Avg merge
- 1d 1h
- Merged PRs (30d)
- 1
Description
Type: Bug
To reproduce:
On a windows 10 system with Zscaler:
- create a github repo with files as per below
- ctrl+shift+p -> Dev Containers: Clone repository into container volume...
Note that it is successful if I clone the repo locally then do Dev Containers: Reopen in Dev Container.
It is also successful if I remove the ninja-asdf feature from the .devcontainer file.
And finally, it is successful if I disable zscaler. I can even do this to build the container the first time, then turn zscaler back on and am able to re-open the container.
I have also tried adding my zscaler root-ca certificate - this fixes other downstream container activities and extensions but does not seem to help here.
repository contents:
- .devcontainer
- devcontainer.json
- Dockerfile
.devcontainer/devcontainer.json:
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
{
"name": "C++",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers-contrib/features/ninja-asdf:2": {
"version": "latest"
}
}
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "gcc -v",
// Configure tool-specific properties.
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
.devcontainer/Dockerfile:
FROM mcr.microsoft.com/devcontainers/cpp:jammy
Here is the the logfile starting from when the feature ninja-asdf is downloaded:
[2023-06-23T17:25:36.817Z] * Processing feature: ghcr.io/devcontainers-contrib/features/ninja-asdf:2
[2023-06-23T17:25:37.335Z] Start: Run: docker-credential-dev-containers-659fc432-1ca0-4b95-84fb-454033a3605c get
[2023-06-23T17:25:38.186Z] Looking up Docker credential helper for 'ghcr.io'.
[2023-06-23T17:25:39.685Z] Stop (2350 ms): Run: docker-credential-dev-containers-659fc432-1ca0-4b95-84fb-454033a3605c get
[2023-06-23T17:25:40.552Z] * Fetching feature: ninja-asdf_1_oci
[2023-06-23T17:25:41.397Z] Start: Run: docker buildx build --load --build-arg BUILDKIT_INLINE_CACHE=1 -f /tmp/devcontainercli-root/container-features/0.42.0-1687541136574/Dockerfile-with-features -t vsc-test-zscaler-0628aa807bfdbfff0fe6037c6794ddcf275cb6196fbf9f687195982c7f80cbe6 --target dev_containers_target_stage --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.42.0-1687541136574 --build-arg _DEV_CONTAINERS_BASE_IMAGE=dev_container_auto_added_stage_label --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp /workspaces/test-zscaler/.devcontainer
[2023-06-23T17:25:41.881Z] [+] Building 0.0s (0/0)
[2023-06-23T17:25:42.030Z] [+] Building 0.0s (0/0)
[2023-06-23T17:25:42.180Z] [+] Building 0.0s (0/0)
[2023-06-23T17:25:42.280Z] [+] Building 0.0s (0/2)
=> [internal] load .dockerignore 0.0s
=> => transferring context: 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.0s
[2023-06-23T17:25:42.391Z] [+] Building 0.2s (0/2)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:42.522Z] [+] Building 0.3s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 0.0s
[2023-06-23T17:25:42.673Z] [+] Building 0.4s (2/3)
[2023-06-23T17:25:42.674Z] => [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 0.1s
[2023-06-23T17:25:42.824Z] [+] Building 0.6s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 0.3s
[2023-06-23T17:25:42.825Z]
[2023-06-23T17:25:42.974Z] [+] Building 0.7s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
[2023-06-23T17:25:42.975Z]
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 0.5s
[2023-06-23T17:25:43.124Z] [+] Building 0.9s (2/3)
=> [internal] load .dockerignore 0.2s
[2023-06-23T17:25:43.125Z] => => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 0.6s
[2023-06-23T17:25:43.275Z] [+] Building 1.0s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:43.276Z] => resolve image config for docker.io/docker/dockerfile:1.4 0.8s
[2023-06-23T17:25:43.426Z] [+] Building 1.2s (2/3)
=> [internal] load .dockerignore 0.2s
[2023-06-23T17:25:43.426Z] => => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 0.9s
[2023-06-23T17:25:43.465Z] Looking up Docker credential helper for 'https://index.docker.io/v1/'.
[2023-06-23T17:25:43.578Z] [+] Building 1.3s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 1.1s
[2023-06-23T17:25:43.727Z] [+] Building 1.5s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:43.728Z] => resolve image config for docker.io/docker/dockerfile:1.4 1.2s
[2023-06-23T17:25:43.877Z] [+] Building 1.6s (2/3)
=> [internal] load .dockerignore 0.2s
[2023-06-23T17:25:43.878Z] => => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 1.4s
[2023-06-23T17:25:44.028Z] [+] Building 1.8s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
[2023-06-23T17:25:44.029Z] => => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 1.5s
[2023-06-23T17:25:44.179Z] [+] Building 1.9s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
[2023-06-23T17:25:44.180Z] => => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 1.7s
[2023-06-23T17:25:44.330Z] [+] Building 2.1s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
[2023-06-23T17:25:44.332Z] => [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 1.8s
[2023-06-23T17:25:44.481Z] [+] Building 2.2s (2/3)
=> [internal] load .dockerignore 0.2s
[2023-06-23T17:25:44.482Z] => => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 2.0s
[2023-06-23T17:25:44.631Z] [+] Building 2.4s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 2.1s
[2023-06-23T17:25:44.782Z] [+] Building 2.5s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:44.783Z] => resolve image config for docker.io/docker/dockerfile:1.4 2.3s
[2023-06-23T17:25:44.932Z] [+] Building 2.7s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 2.4s
[2023-06-23T17:25:45.016Z] Looking up Docker credential helper for 'https://index.docker.io/v1/'.
[2023-06-23T17:25:45.083Z] [+] Building 2.8s (2/3)
[2023-06-23T17:25:45.084Z] => [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 2.6s
[2023-06-23T17:25:45.234Z] [+] Building 3.0s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
[2023-06-23T17:25:45.235Z]
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 2.7s
[2023-06-23T17:25:45.387Z] [+] Building 3.1s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
[2023-06-23T17:25:45.388Z] => [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 2.9s
[2023-06-23T17:25:45.535Z] [+] Building 3.3s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
[2023-06-23T17:25:45.536Z] => [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 3.0s
[2023-06-23T17:25:45.685Z] [+] Building 3.4s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:45.686Z] => resolve image config for docker.io/docker/dockerfile:1.4 3.2s
[2023-06-23T17:25:45.836Z] [+] Building 3.6s (2/3)
=> [internal] load .dockerignore 0.2s
[2023-06-23T17:25:45.837Z] => => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 3.3s
[2023-06-23T17:25:45.987Z] [+] Building 3.7s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 3.5s
[2023-06-23T17:25:46.138Z] [+] Building 3.9s (2/3)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:46.139Z] => resolve image config for docker.io/docker/dockerfile:1.4 3.6s
[2023-06-23T17:25:46.289Z] [+] Building 4.0s (3/4)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
[2023-06-23T17:25:46.290Z] => => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 3.8s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:46.440Z] [+] Building 4.2s (3/4)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
[2023-06-23T17:25:46.440Z] => => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 3.9s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:46.590Z] [+] Building 4.3s (3/4)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 4.1s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:46.740Z] [+] Building 4.5s (3/4)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
[2023-06-23T17:25:46.741Z] => resolve image config for docker.io/docker/dockerfile:1.4 4.2s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:46.892Z] [+] Building 4.7s (3/4)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
[2023-06-23T17:25:46.893Z] => [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 4.4s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:47.043Z] [+] Building 4.8s (3/4)
[2023-06-23T17:25:47.044Z] => [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> resolve image config for docker.io/docker/dockerfile:1.4 4.5s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:47.194Z] [+] Building 5.0s (4/4)
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
[2023-06-23T17:25:47.206Z]
=> => transferring dockerfile: 1.98kB 0.1s
=> ERROR resolve image config for docker.io/docker/dockerfile:1.4 4.5s
=> [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
[2023-06-23T17:25:47.258Z]
[2023-06-23T17:25:47.260Z] [+] Building 5.0s (4/4) FINISHED
=> [internal] load .dockerignore 0.2s
=> => transferring context: 2B 0.0s
=> [internal] load build definition from Dockerfile-with-features 0.2s
=> => transferring dockerfile: 1.98kB 0.1s
=> ERROR resolve image config for docker.io/docker/dockerfile:1.4 4.5s
[2023-06-23T17:25:47.261Z] => [auth] docker/dockerfile:pull token for registry-1.docker.io 0.0s
------
> resolve image config for docker.io/docker/dockerfile:1.4:
------
[2023-06-23T17:25:47.269Z] Dockerfile-with-features:1
--------------------
1 | >>> # syntax=docker/dockerfile:1.4
2 | ARG _DEV_CONTAINERS_BASE_IMAGE=placeholder
3 | FROM mcr.microsoft.com/devcontainers/cpp:jammy AS dev_container_auto_added_stage_label
--------------------
error: failed to solve: failed to authorize: failed to fetch oauth token: Post "https://auth.docker.io/token": x509: certificate signed by unknown authority
[2023-06-23T17:25:47.342Z] Stop (5945 ms): Run: docker buildx build --load --build-arg BUILDKIT_INLINE_CACHE=1 -f /tmp/devcontainercli-root/container-features/0.42.0-1687541136574/Dockerfile-with-features -t vsc-test-zscaler-0628aa807bfdbfff0fe6037c6794ddcf275cb6196fbf9f687195982c7f80cbe6 --target dev_containers_target_stage --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.42.0-1687541136574 --build-arg _DEV_CONTAINERS_BASE_IMAGE=dev_container_auto_added_stage_label --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp /workspaces/test-zscaler/.devcontainer
[2023-06-23T17:25:47.367Z] Error: Command failed: docker buildx build --load --build-arg BUILDKIT_INLINE_CACHE=1 -f /tmp/devcontainercli-root/container-features/0.42.0-1687541136574/Dockerfile-with-features -t vsc-test-zscaler-0628aa807bfdbfff0fe6037c6794ddcf275cb6196fbf9f687195982c7f80cbe6 --target dev_containers_target_stage --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.42.0-1687541136574 --build-arg _DEV_CONTAINERS_BASE_IMAGE=dev_container_auto_added_stage_label --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp /workspaces/test-zscaler/.devcontainer
[2023-06-23T17:25:47.369Z] at vte (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2004:1698)
[2023-06-23T17:25:47.370Z] at processTicksAndRejections (node:internal/process/task_queues:96:5)
[2023-06-23T17:25:47.371Z] at async zx (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2003:3911)
[2023-06-23T17:25:47.371Z] at async IN (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2003:2830)
[2023-06-23T17:25:47.372Z] at async Ote (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2020:3660)
[2023-06-23T17:25:47.373Z] at async Hf (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2020:4775)
[2023-06-23T17:25:47.374Z] at async Qre (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2151:10371)
[2023-06-23T17:25:47.375Z] at async Zre (/root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js:2151:10112)
[2023-06-23T17:25:47.503Z] Stop (15481 ms): Run in container: node /root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js up --container-session-data-folder /tmp/devcontainers-228d4d43-949d-429d-bdbd-a6e60380f8031687541002122 --workspace-folder /workspaces/test-zscaler --workspace-mount-consistency cached --id-label vsch.local.repository=https://github.com/geoffdudds/test-zscaler.git/tree/master --id-label vsch.local.repository.volume=test-zscaler-master-6b2384f934eb3ee09032105bbbf06783c4b4d53a11b6c52aa55c06306ab68112 --id-label vsch.local.repository.folder=test-zscaler --id-label devcontainer.config_file=/workspaces/test-zscaler/.devcontainer/devcontainer.json --log-level debug --log-format json --config /workspaces/test-zscaler/.devcontainer/devcontainer.json --override-config /tmp/devcontainer-afa01428-e2fa-4d7a-a153-994180750a12.json --default-user-env-probe loginInteractiveShell --mount type=volume,source=test-zscaler-master-6b2384f934eb3ee09032105bbbf06783c4b4d53a11b6c52aa55c06306ab68112,target=/workspaces,external=true --mount type=volume,source=vscode,target=/vscode,external=true --mount type=bind,source=\\wsl.localhost\Ubuntu\run\user\1000\wayland-0,target=/tmp/vscode-wayland-a16c6f59-24fe-4999-94e8-dff87eff0e54.sock --skip-post-create --update-remote-user-uid-default off --mount-workspace-git-root true --terminal-columns 202 --terminal-rows 16
[2023-06-23T17:25:47.505Z] Exit code 1
[2023-06-23T17:25:47.507Z] Start: Run: docker rm -f 58a862f985ace670abf6861f3051d5ba4f4a598b9d8639cdc369166a5f537f2b
[2023-06-23T17:25:47.534Z] Command failed: node /root/.vscode-remote-containers/dist/dev-containers-cli-0.295.0/dist/spec-node/devContainersSpecCLI.js up --container-session-data-folder /tmp/devcontainers-228d4d43-949d-429d-bdbd-a6e60380f8031687541002122 --workspace-folder /workspaces/test-zscaler --workspace-mount-consistency cached --id-label vsch.local.repository=https://github.com/geoffdudds/test-zscaler.git/tree/master --id-label vsch.local.repository.volume=test-zscaler-master-6b2384f934eb3ee09032105bbbf06783c4b4d53a11b6c52aa55c06306ab68112 --id-label vsch.local.repository.folder=test-zscaler --id-label devcontainer.config_file=/workspaces/test-zscaler/.devcontainer/devcontainer.json --log-level debug --log-format json --config /workspaces/test-zscaler/.devcontainer/devcontainer.json --override-config /tmp/devcontainer-afa01428-e2fa-4d7a-a153-994180750a12.json --default-user-env-probe loginInteractiveShell --mount type=volume,source=test-zscaler-master-6b2384f934eb3ee09032105bbbf06783c4b4d53a11b6c52aa55c06306ab68112,target=/workspaces,external=true --mount type=volume,source=vscode,target=/vscode,external=true --mount type=bind,source=\\wsl.localhost\Ubuntu\run\user\1000\wayland-0,target=/tmp/vscode-wayland-a16c6f59-24fe-4999-94e8-dff87eff0e54.sock --skip-post-create --update-remote-user-uid-default off --mount-workspace-git-root true --terminal-columns 202 --terminal-rows 16
[2023-06-23T17:25:47.536Z] Exit code 1
[2023-06-23T17:25:49.671Z] Stop (66556 ms): Run in container: /bin/sh
[2023-06-23T17:25:49.672Z] Container server terminated (code: 137, signal: null).
[2023-06-23T17:25:49.681Z] Stop (73707 ms): Run in container: /bin/sh
[2023-06-23T17:25:50.586Z] Stop (3079 ms): Run: docker rm -f 58a862f985ace670abf6861f3051d5ba4f4a598b9d8639cdc369166a5f537f2b
[2023-06-23T17:26:08.838Z] Start: Run: docker volume ls -q
[2023-06-23T17:26:09.532Z] Stop (694 ms): Run: docker volume ls -q
[2023-06-23T17:26:10.265Z] Start: Run: docker version --format {{.Server.APIVersion}}
[2023-06-23T17:26:11.069Z] Stop (804 ms): Run: docker version --format {{.Server.APIVersion}}
[2023-06-23T17:26:11.070Z] 1.43
VS Code version: Code 1.79.2 (695af097c7bd098fbf017ce3ac85e09bbc5dda06, 2023-06-14T08:57:04.379Z)
OS version: Windows_NT x64 10.0.19044
Modes:
Remote OS version: Linux x64 5.15.90.1-microsoft-standard-WSL2
System Info
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i7-10610U CPU @ 1.80GHz (8 x 2304) |
| GPU Status | 2d_canvas: enabled canvas_oop_rasterization: disabled_off direct_rendering_display_compositor: disabled_off_ok gpu_compositing: enabled multiple_raster_threads: enabled_on opengl: enabled_on rasterization: enabled raw_draw: disabled_off_ok video_decode: enabled video_encode: enabled vulkan: disabled_off webgl: enabled webgl2: enabled webgpu: enabled |
| Load (avg) | undefined |
| Memory (System) | 15.68GB (0.84GB free) |
| Process Argv | --folder-uri file:///c%3A/sw/framework --crash-reporter-id 95e3f7ff-a2b2-4bbb-aa56-3cacd1eeeea8 |
| Screen Reader | no |
| VM | 0% |
| Item | Value |
|---|---|
| Remote | Recovery Container |
| OS | Linux x64 5.15.90.1-microsoft-standard-WSL2 |
| CPUs | Intel(R) Core(TM) i7-10610U CPU @ 1.80GHz (8 x 2304) |
| Memory (System) | 7.60GB (5.72GB free) |
| VM | 0% |
Extensions (16)
| Extension | Author (truncated) | Version |
|---|---|---|
| codespaces | Git | 1.14.8 |
| output-colorizer | IBM | 0.1.2 |
| better-cpp-syntax | jef | 1.17.2 |
| vsc-python-indent | Kev | 1.18.0 |
| python-sphinx-highlight | leo | 0.3.0 |
| debug-tracker-vscode | mcu | 0.0.15 |
| peripheral-viewer | mcu | 1.4.6 |
| jupyter-keymap | ms- | 1.1.2 |
| remote-containers | ms- | 0.295.0 |
| remote-ssh | ms- | 0.102.0 |
| remote-ssh-edit | ms- | 0.86.0 |
| remote-wsl | ms- | 0.79.5 |
| remote-explorer | ms- | 0.4.0 |
| ninja | sur | 0.0.1 |
| jinja | who | 0.0.8 |
| linkerscript | Zix | 1.0.3 |
(1 theme extensions excluded)
A/B Experiments
vsliv368cf:30146710
vsreu685:30147344
python383:30185418
vspor879:30202332
vspor708:30202333
vspor363:30204092
vslsvsres303:30308271
vserr242cf:30382550
pythontb:30283811
vsjup518:30340749
pythonptprofiler:30281270
vshan820:30294714
vstes263:30335439
vscoreces:30445986
vscod805:30301674
binariesv615:30325510
bridge0708:30335490
bridge0723:30353136
vsaa593:30376534
pythonvs932:30410667
py29gd2263cf:30773604
vsclangdf:30486550
c4g48928:30535728
dsvsc012cf:30540253
pynewext54:30695312
azure-dev_surveyone:30548225
282f8724:30602487
pyind779:30671433
89544117:30613380
pythonsymbol12:30671437
showlangstatbar:30737416
vsctsb:30748421
pythonms35:30701012
03d35959:30757346
pythonfmttext:30731395
pythoncmv:30756943
f8hc8238:30694864
fixshowwlkth:30771522
pythongtdpath:30769146
gsof2:30774497
dh2dc718:30770000
pythonidxptcf:30772540
pythondjangots:30772535
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.