microsoft / vscode-remote-release

Visual Studio Code Remote Development: Open any folder in WSL, in a Docker container, or on a remote machine using SSH and take advantage of VS Code's full feature set.
https://aka.ms/vscode-remote
Other
3.55k stars 263 forks source link

DevContainer + Remote SSH: Host server: X11 connection rejected because of wrong authentication #8550

Open Austriker opened 1 year ago

Austriker commented 1 year ago

Steps to Reproduce:

  1. devcontainer.json

    {
    "name": "robot",
    "build": {
        "dockerfile": "./Dockerfile",
        "context": "../"
    },
    "features": {
        "ghcr.io/devcontainers/features/common-utils:2": {
            "installZsh": "true"
        },
        "ghcr.io/devcontainers/features/git-lfs:1": {}
    },
    "runArgs": [
        "--network",
        "host",
        "--cap-add=ALL"
    ],
    "mounts": [
        "source=berry-bashhistory,target=/commandhistory,type=volume",
        "source=/home/${localEnv:USER}/.ssh,target=/root/.ssh-localhost,type=bind,consistency=cached"
    ],
    "postCreateCommand": "bash .devcontainer/post-create-command.sh",
    "customizations": {
        "vscode": {
            "extensions": [
                "ms-python.python",
                "ms-python.isort",
                "ms-python.flake8",
                "ms-python.black-formatter",
                "eamodio.gitlens",
                "tamasfe.even-better-toml",
                "njpwerner.autodocstring",
                "ms-azuretools.vscode-docker"
            ]
        }
    },
    "remoteUser": "berry"
    }
  2. dockerfile

    
    FROM python:3.10

RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \

Remove imagemagick due to https://security-tracker.debian.org/tracker/CVE-2019-10131

&& apt-get purge -y imagemagick imagemagick-6-common \
&& apt-get upgrade -y \
&& apt-get install -y \
    shellcheck \
    can-utils

ARG USERNAME=berry ARG USER_UID=1000 ARG USER_GID=$USER_UID

Create the user

RUN groupadd --gid $USER_GID $USERNAME \ && useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \ && apt-get update \ && apt-get install -y sudo \ && echo $USERNAME ALL=(root) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \ && chmod 0440 /etc/sudoers.d/$USERNAME

RUN SNIPPET="export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \ && mkdir /commandhistory \ && touch /commandhistory/.bash_history \ && chown -R $USERNAME /commandhistory \ && echo "$SNIPPET" >> "/home/$USERNAME/.bashrc"

RUN mkdir -p /home/$USERNAME/.vscode-server/extensions \ /home/$USERNAME/.vscode-server-insiders/extensions \ && chown -R $USERNAME \ /home/$USERNAME/.vscode-server \ /home/$USERNAME/.vscode-server-insiders

COPY requirements.txt /tmp/pip-tmp/ COPY requirements_dev.txt /tmp/pip-tmp/

USER $USERNAME ENV HOME=/home/${USERNAME} ENV PATH=${PATH}:/home/${USERNAME}/.local/bin

RUN python3 -m pip install --upgrade pip RUN cd /tmp/pip-tmp/ \ && python3 -m pip --no-cache-dir install -r requirements_dev.txt


4. ssh config
```sh
Host 192.168.0.101
  HostName 192.168.0.101
  ForwardAgent yes
  ForwardX11 yes
  User integration
  1. Install x11-apps
  2. xclock
    $ xclock
    Error: Can't open display: :30

I have checked:

Does this issue occur when you try this locally?: No if I don't use the SSH connection. Does this issue occur when you try this locally and all extensions are disabled?: No you need devcontainer and ssh extensions to make it work

chrmarti commented 1 year ago

Please append the Dev Containers log from when this happens. (F1 > Dev Containers: Show Container Log)

This should also work without ForwardX11 yes because the extension forwards the local DISPLAY to the container. Could you also try without ForwardX11 yes?

Austriker commented 1 year ago

@chrmarti I have attached the log from the container in the issue: https://github.com/microsoft/vscode-remote-release/files/11598813/vscode.log

I have put it down bellow:

[36 ms] Dev Containers 0.292.0 in VS Code 1.78.2 (b3e4e68a0bc097f0ae7907b217c1119af9e03435).
[35 ms] Start: Resolving Remote
[44 ms] Start: Run: ssh 192.168.0.101 /bin/sh
[52 ms] Start: Run in host: id -un
[347 ms] integration
[347 ms] 
[347 ms] Stop (295 ms): Run in host: id -un
[347 ms] Start: Run in host: cat /etc/passwd
[350 ms] Stop (3 ms): Run in host: cat /etc/passwd
[350 ms] Start: Run in host: echo ~
[352 ms] /home/integration
[352 ms] 
[352 ms] Stop (2 ms): Run in host: echo ~
[353 ms] Start: Run in host: test -x '/home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node'
[354 ms] 
[355 ms] 
[355 ms] Stop (2 ms): Run in host: test -x '/home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node'
[355 ms] Start: Run in host: test -f '/home/integration/.vscode-remote-containers/dist/vscode-remote-containers-server-0.292.0.js'
[357 ms] 
[357 ms] 
[357 ms] Stop (2 ms): Run in host: test -f '/home/integration/.vscode-remote-containers/dist/vscode-remote-containers-server-0.292.0.js'
[359 ms] userEnvProbe: loginInteractiveShell (default)
[360 ms] userEnvProbe: not found in cache
[360 ms] userEnvProbe shell: /bin/bash
[361 ms] Start: Run in Host: /bin/bash -lic echo -n 9f71a42d-6687-48e0-ba04-52924e019de1; cat /proc/self/environ; echo -n 9f71a42d-6687-48e0-ba04-52924e019de1
[440 ms] Stop (79 ms): Run in Host: /bin/bash -lic echo -n 9f71a42d-6687-48e0-ba04-52924e019de1; cat /proc/self/environ; echo -n 9f71a42d-6687-48e0-ba04-52924e019de1
[441 ms] 9f71a42d-6687-48e0-ba04-52924e019de1SHELL=/bin/bashLC_ADDRESS=fr_FR.UTF-8LC_NAME=fr_FR.UTF-8SSH_AUTH_SOCK=/tmp/ssh-XXXXSkKHvA/agent.47973REMOTE_CONTAINERS_IPC=LC_MONETARY=fr_FR.UTF-8PWD=/home/integration/berryLOGNAME=integrationXDG_SESSION_TYPE=ttyMOTD_SHOWN=pamHOME=/home/integrationLC_PAPER=fr_FR.UTF-8LANG=en_US.UTF-8LS_COLORS=SSH_CONNECTION=192.168.0.67 56938 192.168.0.101 22LESSCLOSE=/usr/bin/lesspipe %s %sXDG_SESSION_CLASS=userLC_IDENTIFICATION=fr_FR.UTF-8REMOTE_CONTAINERS_SOCKETS=[]LESSOPEN=| /usr/bin/lesspipe %sUSER=integrationDISPLAY=localhost:10.0SHLVL=1LC_TELEPHONE=fr_FR.UTF-8LC_MEASUREMENT=fr_FR.UTF-8XDG_SESSION_ID=23XDG_RUNTIME_DIR=/run/user/1000SSH_CLIENT=192.168.0.67 56938 22LC_TIME=fr_FR.UTF-8XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktopPATH=/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/binDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busLC_NUMERIC=fr_FR.UTF-8_=/usr/bin/cat9f71a42d-6687-48e0-ba04-52924e019de1
[441 ms] bash: cannot set terminal process group (47974): Inappropriate ioctl for device
bash: no job control in this shell

[442 ms] userEnvProbe parsed: {
  "SHELL": "/bin/bash",
  "LC_ADDRESS": "fr_FR.UTF-8",
  "LC_NAME": "fr_FR.UTF-8",
  "SSH_AUTH_SOCK": "/tmp/ssh-XXXXSkKHvA/agent.47973",
  "REMOTE_CONTAINERS_IPC": "",
  "LC_MONETARY": "fr_FR.UTF-8",
  "PWD": "/home/integration/berry",
  "LOGNAME": "integration",
  "XDG_SESSION_TYPE": "tty",
  "MOTD_SHOWN": "pam",
  "HOME": "/home/integration",
  "LC_PAPER": "fr_FR.UTF-8",
  "LANG": "en_US.UTF-8",
  "LS_COLORS": "",
  "SSH_CONNECTION": "192.168.0.67 56938 192.168.0.101 22",
  "LESSCLOSE": "/usr/bin/lesspipe %s %s",
  "XDG_SESSION_CLASS": "user",
  "LC_IDENTIFICATION": "fr_FR.UTF-8",
  "REMOTE_CONTAINERS_SOCKETS": "[]",
  "LESSOPEN": "| /usr/bin/lesspipe %s",
  "USER": "integration",
  "DISPLAY": "localhost:10.0",
  "SHLVL": "1",
  "LC_TELEPHONE": "fr_FR.UTF-8",
  "LC_MEASUREMENT": "fr_FR.UTF-8",
  "XDG_SESSION_ID": "23",
  "XDG_RUNTIME_DIR": "/run/user/1000",
  "SSH_CLIENT": "192.168.0.67 56938 22",
  "LC_TIME": "fr_FR.UTF-8",
  "XDG_DATA_DIRS": "/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop",
  "PATH": "/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin",
  "DBUS_SESSION_BUS_ADDRESS": "unix:path=/run/user/1000/bus",
  "LC_NUMERIC": "fr_FR.UTF-8",
  "_": "/usr/bin/cat"
}
[442 ms] userEnvProbe PATHs:
Probe:     '/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin'
Container: None
[448 ms] Setting up container for folder or workspace: /home/integration/berry
[448 ms] Host: ssh://192.168.0.101
[450 ms] Start: Check Docker is running
[451 ms] Start: Run in Host: docker version --format {{.Server.APIVersion}}
[519 ms] Stop (68 ms): Run in Host: docker version --format {{.Server.APIVersion}}
[519 ms] Server API version: 1.42
[520 ms] Stop (70 ms): Check Docker is running
[520 ms] Start: Run in Host: docker volume ls -q
[581 ms] Stop (61 ms): Run in Host: docker volume ls -q
[582 ms] Start: Run in Host: docker ps -q -a --filter label=vsch.local.folder=/home/integration/berry --filter label=vsch.quality=stable
[649 ms] Stop (67 ms): Run in Host: docker ps -q -a --filter label=vsch.local.folder=/home/integration/berry --filter label=vsch.quality=stable
[650 ms] Start: Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[715 ms] Stop (65 ms): Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[715 ms] Start: Run in Host: docker inspect --type container 6b60d4166fec
[775 ms] Stop (60 ms): Run in Host: docker inspect --type container 6b60d4166fec
[777 ms] Start: Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry
[844 ms] Stop (67 ms): Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry
[844 ms] Start: Run in Host: docker inspect --type container 6b60d4166fec
[908 ms] Stop (64 ms): Run in Host: docker inspect --type container 6b60d4166fec
[909 ms] Start: Run in Host: docker exec -i -u root 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb /bin/sh -c echo "Container already running. Keep-alive process started." ; export VSCODE_REMOTE_CONTAINERS_SESSION=b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 ; /bin/sh
[917 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --mount-workspace-git-root true
[1065 ms] Container already running. Keep-alive process started.
[1141 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[1141 ms] Start: Run: git rev-parse --show-cdup
[1158 ms] Stop (17 ms): Run: git rev-parse --show-cdup
[1160 ms] Start: Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1229 ms] Stop (69 ms): Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1230 ms] Start: Run: docker inspect --type container 6b60d4166fec
[1291 ms] Stop (61 ms): Run: docker inspect --type container 6b60d4166fec
[1303 ms] Stop (386 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --mount-workspace-git-root true
[1309 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js up --container-session-data-folder /tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 --workspace-folder /home/integration/berry --workspace-mount-consistency cached --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --mount type=volume,source=vscode,target=/vscode,external=true --skip-post-create --update-remote-user-uid-default on --mount-workspace-git-root true
[1504 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[1503 ms] Start: Run: docker buildx version
[1606 ms] Stop (103 ms): Run: docker buildx version
[1606 ms] github.com/docker/buildx v0.10.4 c513d34
[1606 ms] 
[1606 ms] Start: Resolving Remote
[1610 ms] Start: Run: git rev-parse --show-cdup
[1614 ms] Stop (4 ms): Run: git rev-parse --show-cdup
[1615 ms] Start: Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1679 ms] Stop (64 ms): Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1679 ms] Start: Run: docker inspect --type container 6b60d4166fec
[1742 ms] Stop (63 ms): Run: docker inspect --type container 6b60d4166fec
[1744 ms] Start: Inspecting container
[1745 ms] Start: Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[1805 ms] Stop (60 ms): Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[1805 ms] Stop (61 ms): Inspecting container
[1806 ms] Start: Run in container: /bin/sh
[1810 ms] Start: Run in container: uname -m
[1986 ms] x86_64
[1986 ms] 
[1986 ms] Stop (176 ms): Run in container: uname -m
[1986 ms] Start: Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[1988 ms] PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
[1989 ms] 
[1989 ms] Stop (3 ms): Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[1989 ms] Start: Run in container: cat /etc/passwd
[1991 ms] Stop (2 ms): Run in container: cat /etc/passwd
[1992 ms] Start: Run in container: test -f '/var/devcontainer/.patchEtcEnvironmentMarker'
[1992 ms] 
[1992 ms] 
[1992 ms] Stop (0 ms): Run in container: test -f '/var/devcontainer/.patchEtcEnvironmentMarker'
[1992 ms] Start: Run in container: test -f '/var/devcontainer/.patchEtcProfileMarker'
[1993 ms] 
[1993 ms] 
[1993 ms] Stop (1 ms): Run in container: test -f '/var/devcontainer/.patchEtcProfileMarker'
[1994 ms] Stop (388 ms): Resolving Remote
[2005 ms] Stop (696 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js up --container-session-data-folder /tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 --workspace-folder /home/integration/berry --workspace-mount-consistency cached --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --mount type=volume,source=vscode,target=/vscode,external=true --skip-post-create --update-remote-user-uid-default on --mount-workspace-git-root true
[2005 ms] Start: Run in Host: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[2070 ms] Stop (65 ms): Run in Host: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[2076 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --include-merged-configuration --mount-workspace-git-root true
[2251 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[2251 ms] Start: Run: git rev-parse --show-cdup
[2258 ms] Stop (7 ms): Run: git rev-parse --show-cdup
[2260 ms] Start: Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[2322 ms] Stop (62 ms): Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[2335 ms] Stop (259 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --include-merged-configuration --mount-workspace-git-root true
[2336 ms] Start: Inspecting container
[2336 ms] Start: Run in Host: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[2402 ms] Stop (66 ms): Run in Host: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[2403 ms] Stop (67 ms): Inspecting container
[2408 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb /bin/sh
[2412 ms] Start: Run in container: uname -m
[2573 ms] x86_64
[2574 ms] 
[2574 ms] Stop (162 ms): Run in container: uname -m
[2574 ms] Start: Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[2577 ms] PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
[2577 ms] 
[2578 ms] Stop (4 ms): Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[2578 ms] Start: Run in container: cat /etc/passwd
[2581 ms] Stop (3 ms): Run in container: cat /etc/passwd
[2582 ms] Start: Setup shutdown monitor
[2582 ms] Forking shutdown monitor: /home/hserrat/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/dist/shutdown/shutdownMonitorProcess /run/user/1000/vscode-remote-containers-c3df02cb-1900-4db0-acc7-5c1f08e24641.sock singleContainer Trace /home/hserrat/.config/Code/logs/20230530T114919/window2/exthost/ms-vscode-remote.remote-containers 1685440691202
[2593 ms] Stop (11 ms): Setup shutdown monitor
[2594 ms] Start: Run in container: test -d /home/berry/.vscode-server
[2598 ms] 
[2598 ms] 
[2598 ms] Stop (4 ms): Run in container: test -d /home/berry/.vscode-server
[2599 ms] Start: Run in container: test ! -f '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' && set -o noclobber && mkdir -p '/home/berry/.vscode-server/data/Machine' && { > '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' ; } 2> /dev/null
[2600 ms] 
[2600 ms] 
[2600 ms] Exit code 1
[2601 ms] Stop (2 ms): Run in container: test ! -f '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' && set -o noclobber && mkdir -p '/home/berry/.vscode-server/data/Machine' && { > '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' ; } 2> /dev/null
[2601 ms] Start: Run in container: cat /home/berry/.vscode-server/data/Machine/settings.json
[2603 ms] 
[2604 ms] cat: /home/berry/.vscode-server/data/Machine/settings.json: No such file or directory
[2604 ms] Exit code 1
[2604 ms] Stop (3 ms): Run in container: cat /home/berry/.vscode-server/data/Machine/settings.json
[2604 ms] Start: Run in container: test -d /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2607 ms] 
[2607 ms] 
[2607 ms] Stop (3 ms): Run in container: test -d /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2607 ms] Start: Run in container: test -d /vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2609 ms] 
[2609 ms] 
[2609 ms] Stop (2 ms): Run in container: test -d /vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2610 ms] Start: Run in Host: docker exec -i -u root 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb /bin/sh
[2610 ms] Start: Launching Dev Containers helper.
[2611 ms] ssh-agent: SSH_AUTH_SOCK in container (/tmp/vscode-ssh-auth-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock) forwarded to ssh host (/tmp/ssh-XXXXSkKHvA/agent.47973).
[2611 ms] Start: Run in container: test -e /tmp/.X11-unix/X0
[2613 ms] Start: Run in container: touch '/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[2616 ms] 
[2616 ms] 
[2616 ms] Stop (5 ms): Run in container: test -e /tmp/.X11-unix/X0
[2616 ms] Start: Run in container: test -e /tmp/.X11-unix/X1
[2618 ms] 
[2619 ms] 
[2619 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X1
[2619 ms] Start: Run in container: test -e /tmp/.X11-unix/X2
[2621 ms] 
[2621 ms] 
[2621 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X2
[2621 ms] Start: Run in container: test -e /tmp/.X11-unix/X3
[2623 ms] 
[2624 ms] 
[2624 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X3
[2624 ms] Start: Run in container: test -e /tmp/.X11-unix/X4
[2626 ms] 
[2626 ms] 
[2627 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X4
[2627 ms] Start: Run in container: test -e /tmp/.X11-unix/X5
[2629 ms] 
[2629 ms] 
[2629 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X5
[2629 ms] Start: Run in container: test -e /tmp/.X11-unix/X6
[2631 ms] 
[2631 ms] 
[2632 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X6
[2632 ms] Start: Run in container: test -e /tmp/.X11-unix/X7
[2633 ms] 
[2634 ms] 
[2634 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X7
[2634 ms] Start: Run in container: test -e /tmp/.X11-unix/X8
[2635 ms] 
[2636 ms] 
[2636 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X8
[2636 ms] Start: Run in container: test -e /tmp/.X11-unix/X9
[2638 ms] 
[2638 ms] 
[2638 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X9
[2638 ms] Start: Run in container: test -e /tmp/.X11-unix/X10
[2640 ms] 
[2640 ms] 
[2640 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X10
[2640 ms] Start: Run in container: test -e /tmp/.X11-unix/X11
[2642 ms] 
[2642 ms] 
[2642 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X11
[2642 ms] Start: Run in container: test -e /tmp/.X11-unix/X12
[2643 ms] 
[2644 ms] 
[2644 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X12
[2644 ms] Start: Run in container: test -e /tmp/.X11-unix/X13
[2646 ms] 
[2646 ms] 
[2646 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X13
[2646 ms] Start: Run in container: test -e /tmp/.X11-unix/X14
[2648 ms] 
[2648 ms] 
[2648 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X14
[2648 ms] Start: Run in container: test -e /tmp/.X11-unix/X15
[2650 ms] 
[2650 ms] 
[2650 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X15
[2650 ms] Start: Run in container: test -e /tmp/.X11-unix/X16
[2652 ms] 
[2652 ms] 
[2652 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X16
[2652 ms] Start: Run in container: test -e /tmp/.X11-unix/X17
[2654 ms] 
[2655 ms] 
[2655 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X17
[2655 ms] Start: Run in container: test -e /tmp/.X11-unix/X18
[2657 ms] 
[2657 ms] 
[2657 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X18
[2658 ms] Start: Run in container: test -e /tmp/.X11-unix/X19
[2660 ms] 
[2660 ms] 
[2660 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X19
[2661 ms] Start: Run in container: test -e /tmp/.X11-unix/X20
[2662 ms] 
[2663 ms] 
[2663 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X20
[2663 ms] Start: Run in container: test -e /tmp/.X11-unix/X21
[2665 ms] 
[2665 ms] 
[2665 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X21
[2665 ms] Start: Run in container: test -e /tmp/.X11-unix/X22
[2667 ms] 
[2667 ms] 
[2667 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X22
[2668 ms] Start: Run in container: test -e /tmp/.X11-unix/X23
[2669 ms] 
[2670 ms] 
[2670 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X23
[2670 ms] Start: Run in container: test -e /tmp/.X11-unix/X24
[2671 ms] 
[2672 ms] 
[2672 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X24
[2672 ms] Start: Run in container: test -e /tmp/.X11-unix/X25
[2674 ms] 
[2674 ms] 
[2674 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X25
[2675 ms] Start: Run in container: test -e /tmp/.X11-unix/X26
[2676 ms] 
[2677 ms] 
[2677 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X26
[2677 ms] Start: Run in container: test -e /tmp/.X11-unix/X27
[2679 ms] 
[2679 ms] 
[2679 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X27
[2680 ms] Start: Run in container: test -e /tmp/.X11-unix/X28
[2682 ms] 
[2683 ms] 
[2683 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X28
[2683 ms] Start: Run in container: test -e /tmp/.X11-unix/X29
[2685 ms] 
[2685 ms] 
[2685 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X29
[2686 ms] Start: Run in container: test -e /tmp/.X11-unix/X30
[2688 ms] 
[2688 ms] 
[2689 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X30
[2689 ms] Start: Run in container: test -e /tmp/.X11-unix/X31
[2691 ms] 
[2691 ms] 
[2691 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X31
[2691 ms] Start: Run in container: test -e /tmp/.X11-unix/X32
[2693 ms] 
[2694 ms] 
[2694 ms] Exit code 1
[2694 ms] Stop (3 ms): Run in container: test -e /tmp/.X11-unix/X32
[2695 ms] Start: Run in container: mkdir -p '/tmp/.X11-unix'
[2710 ms] 
[2710 ms] 
[2710 ms] Stop (15 ms): Run in container: mkdir -p '/tmp/.X11-unix'
[2711 ms] X11 forwarding: DISPLAY in container (:32) forwarded to ssh host (localhost:10.0).
[2711 ms] Start: Run in container: gpgconf --list-dir agent-socket
[2729 ms] /home/berry/.gnupg/S.gpg-agent
[2729 ms] 
[2730 ms] Stop (19 ms): Run in container: gpgconf --list-dir agent-socket
[2730 ms] Start: Run in container: gpgconf --list-dir homedir
[2762 ms] /home/berry/.gnupg
[2763 ms] 
[2763 ms] Stop (33 ms): Run in container: gpgconf --list-dir homedir
[2763 ms] Start: Run in container: ls '/home/berry/.gnupg/private-keys-v1.d' 2>/dev/null
[2767 ms] 
[2767 ms] 
[2767 ms] Exit code 2
[2767 ms] Stop (4 ms): Run in container: ls '/home/berry/.gnupg/private-keys-v1.d' 2>/dev/null
[2768 ms] Start: Run in Host: gpgconf --list-dir agent-extra-socket
[2760 ms] Starting monitor process...
[2776 ms] Stop (8 ms): Run in Host: gpgconf --list-dir agent-extra-socket
[2777 ms] /run/user/1000/gnupg/S.gpg-agent.extra
[2777 ms] 
[2778 ms] Start: Run in container: mkdir -p -m 700 '/home/berry/.gnupg'
[2778 ms] gpg-agent: Socket in container (/home/berry/.gnupg/S.gpg-agent) forwarded to ssh host (/run/user/1000/gnupg/S.gpg-agent.extra).
[2777 ms] Received message: [{"type":"configure","sequence":0,"options":{"cwd":"/home/integration/berry","dockerCLI":"docker","env":{"SHELL":"/bin/bash","LC_ADDRESS":"fr_FR.UTF-8","LC_NAME":"fr_FR.UTF-8","SSH_AUTH_SOCK":"/tmp/ssh-XXXXSkKHvA/agent.47973","REMOTE_CONTAINERS_IPC":"","LC_MONETARY":"fr_FR.UTF-8","LOGNAME":"integration","XDG_SESSION_TYPE":"tty","MOTD_SHOWN":"pam","HOME":"/home/integration","LC_PAPER":"fr_FR.UTF-8","LANG":"en_US.UTF-8","LS_COLORS":"","SSH_CONNECTION":"192.168.0.67 56938 192.168.0.101 22","LESSCLOSE":"/usr/bin/lesspipe %s %s","XDG_SESSION_CLASS":"user","LC_IDENTIFICATION":"fr_FR.UTF-8","REMOTE_CONTAINERS_SOCKETS":"[]","LESSOPEN":"| /usr/bin/lesspipe %s","USER":"integration","DISPLAY":":0","SHLVL":"1","LC_TELEPHONE":"fr_FR.UTF-8","LC_MEASUREMENT":"fr_FR.UTF-8","XDG_SESSION_ID":"23","XDG_RUNTIME_DIR":"/run/user/1000","SSH_CLIENT":"192.168.0.67 56938 22","LC_TIME":"fr_FR.UTF-8","XDG_DATA_DIRS":"/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop","PATH":"/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin","DBUS_SESSION_BUS_ADDRESS":"unix:path=/run/user/1000/bus","LC_NUMERIC":"fr_FR.UTF-8","_":"/usr/bin/cat","ELECTRON_RUN_AS_NODE":"1","SSH_ASKPASS":"/home/hserrat/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/scripts/ssh-askpass.sh","SSH_ASKPASS_REQUIRE":"force","VSCODE_SSH_ASKPASS_NODE":"/usr/share/code/code","VSCODE_SSH_ASKPASS_EXTRA_ARGS":"--ms-enable-electron-run-as-node","VSCODE_SSH_ASKPASS_MAIN":"/home/hserrat/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/dist/common/sshAskpass.js","VSCODE_SSH_ASKPASS_HANDLE":"/run/user/1000/ssh-askpass-0ca10c4d-3121-457d-8a0a-1e2f4c1f1811.sock","DOCKER_CONTEXT":"default","VSCODE_DOCKER_HOST":"ssh://192.168.0.101"},"containerId":"6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb","user":"berry","sessionId":"b012e489-2d99-4a6c-a087-28dc2517885f1685440690608","logLevel":1,"delay":10000}}]
[2782 ms] 
[2782 ms] 
[2783 ms] Stop (5 ms): Run in container: mkdir -p -m 700 '/home/berry/.gnupg'
[2783 ms] Start: Run in container: command -v docker >/dev/null 2>&1
[2783 ms] Start: Run in Host: gpgconf --list-dir homedir
[2787 ms] 
[2787 ms] 
[2787 ms] Exit code 127
[2787 ms] Stop (4 ms): Run in container: command -v docker >/dev/null 2>&1
[2788 ms] Start: Run in Host: docker exec -i -u berry 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb /bin/sh
[2788 ms] Stop (178 ms): Launching Dev Containers helper.
[2788 ms] userEnvProbe: loginInteractiveShell (default)
[2789 ms] Start: Run in container: test -f '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json'
[2789 ms] Stop (6 ms): Run in Host: gpgconf --list-dir homedir
[2790 ms] /home/integration/.gnupg
[2790 ms] 
[2792 ms] Start: Run in container: echo ~
[2795 ms] 
[2795 ms] 
[2795 ms] Stop (182 ms): Run in container: touch '/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[2796 ms] 
[2796 ms] 
[2796 ms] Exit code 1
[2796 ms] Stop (7 ms): Run in container: test -f '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json'
[2797 ms] Start: Run in container: gpgconf --list-dir homedir
[2797 ms] userEnvProbe: not found in cache
[2797 ms] userEnvProbe shell: /bin/sh
[2801 ms] /home/berry/.gnupg
[2801 ms] 
[2801 ms] Stop (4 ms): Run in container: gpgconf --list-dir homedir
[2801 ms] Start: Run in container: # Test for /home/berry/.ssh/known_hosts and ssh
[2807 ms] /home/berry/.ssh/known_hosts exists
[2807 ms] 
[2807 ms] Exit code 1
[2808 ms] Stop (7 ms): Run in container: # Test for /home/berry/.ssh/known_hosts and ssh
[2808 ms] Start: Run in container: command -v git >/dev/null 2>&1 && git config --system --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js git-credential-helper $*; }; f' || true
[2808 ms] Start: Run in container: # Test for /home/berry/.gnupg/pubring.kbx and gpg
[2810 ms] /home/berry/.gnupg/pubring.kbx exists
[2811 ms] 
[2811 ms] Exit code 1
[2811 ms] Stop (3 ms): Run in container: # Test for /home/berry/.gnupg/pubring.kbx and gpg
[2812 ms] 
[2812 ms] 
[2812 ms] Stop (4 ms): Run in container: command -v git >/dev/null 2>&1 && git config --system --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js git-credential-helper $*; }; f' || true
[2813 ms] Start: Run in container: for pid in `cd /proc && ls -d [0-9]*`; do { echo $pid ; readlink /proc/$pid/cwd || echo ; readlink /proc/$pid/ns/mnt || echo ; cat /proc/$pid/stat | tr "
[2993 ms] /home/berry
[2993 ms] 
[2993 ms] Stop (201 ms): Run in container: echo ~
[2993 ms] Start: Run in container: cat <<'EOF-/tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js' >/tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js
[2999 ms] 
[3000 ms] 
[3000 ms] Stop (7 ms): Run in container: cat <<'EOF-/tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js' >/tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js
[3000 ms] Start: Run in container: cat <<'EOF-/tmp/vscode-remote-containers-server-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js' >/tmp/vscode-remote-containers-server-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js_1685440694202
[3011 ms] 
[3011 ms] 
[3011 ms] Stop (11 ms): Run in container: cat <<'EOF-/tmp/vscode-remote-containers-server-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js' >/tmp/vscode-remote-containers-server-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js_1685440694202
[3013 ms] Start: Run in Container: /bin/sh -lic echo -n 1235d021-33db-4515-a2da-89e83a4d1492; cat /proc/self/environ; echo -n 1235d021-33db-4515-a2da-89e83a4d1492
[3081 ms] Stop (268 ms): Run in container: for pid in `cd /proc && ls -d [0-9]*`; do { echo $pid ; readlink /proc/$pid/cwd || echo ; readlink /proc/$pid/ns/mnt || echo ; cat /proc/$pid/stat | tr "
[3081 ms] Start: Run in container: # Test for /home/berry/.gnupg/trustdb.gpg and gpg
[3085 ms] /home/berry/.gnupg/trustdb.gpg exists
[3085 ms] 
[3085 ms] Exit code 1
[3085 ms] Stop (4 ms): Run in container: # Test for /home/berry/.gnupg/trustdb.gpg and gpg
[3086 ms] Start: Run in container: cat '/home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/product.json'
[3086 ms] Start: Run in Host: gpg-connect-agent updatestartuptty /bye
[3093 ms] Stop (7 ms): Run in container: cat '/home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/product.json'
[3094 ms] Running extension host agents:
[
  {
    "pid": "3249",
    "ppid": "0",
    "pgrp": "3249",
    "cwd": "/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435",
    "mntNS": "mnt:[4026532526]",
    "cmd": "sh /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/bin/code-server --log debug --force-disable-user-env --server-data-dir /home/berry/.vscode-server --telemetry-level all --accept-server-license-terms --host 127.0.0.1 --port 0 --connection-token-file /home/berry/.vscode-server/data/Machine/.connection-token-b3e4e68a0bc097f0ae7907b217c1119af9e03435 --extensions-download-dir /home/berry/.vscode-server/extensionsCache --start-server  ",
    "env": {
      "PATH": "/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin",
      "HOSTNAME": "integration",
      "LANG": "C.UTF-8",
      "GPG_KEY": "A035C8C19219BA821ECEA86B64E628F8D684696D",
      "PYTHON_VERSION": "3.10.9",
      "PYTHON_PIP_VERSION": "22.3.1",
      "PYTHON_SETUPTOOLS_VERSION": "65.5.0",
      "PYTHON_GET_PIP_URL": "https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py",
      "PYTHON_GET_PIP_SHA256": "1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6",
      "HOME": "/home/berry",
      "SHELL": "/bin/sh",
      "VSCODE_AGENT_FOLDER": "/home/berry/.vscode-server"
    }
  }
]
[3094 ms] Extension host agent is already running.
[3095 ms] Start: Run in container: cat '/home/berry/.vscode-server/data/Machine/.devport-b3e4e68a0bc097f0ae7907b217c1119af9e03435' 2>/dev/null
[3099 ms] 34143
[3099 ms] 
[3099 ms] Stop (4 ms): Run in container: cat '/home/berry/.vscode-server/data/Machine/.devport-b3e4e68a0bc097f0ae7907b217c1119af9e03435' 2>/dev/null
[3100 ms] Start: Run in container: cat '/home/berry/.vscode-server/data/Machine/.connection-token-b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[3100 ms] Stop (14 ms): Run in Host: gpg-connect-agent updatestartuptty /bye
[3102 ms] b8a2122c-06ce-4f87-a304-4a1dbcc8f71b
[3102 ms] 
[3102 ms] Stop (2 ms): Run in container: cat '/home/berry/.vscode-server/data/Machine/.connection-token-b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[3102 ms] Port forwarding for container port 34143 starts listening on local port.
[3103 ms] Port forwarding local port 34143 to container port 34143
[3132 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js run-user-commands --container-session-data-folder /tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --skip-non-blocking-commands false --prebuild false --stop-for-personalization true --remote-env REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock --remote-env SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock --remote-env DISPLAY=:32 --remote-env REMOTE_CONTAINERS_DISPLAY_SOCK=/tmp/.X11-unix/X32 --remote-env REMOTE_CONTAINERS=true --mount-workspace-git-root true --terminal-columns 186 --terminal-rows 44 --dotfiles-target-path ~/dotfiles
[3143 ms] Stop (130 ms): Run in Container: /bin/sh -lic echo -n 1235d021-33db-4515-a2da-89e83a4d1492; cat /proc/self/environ; echo -n 1235d021-33db-4515-a2da-89e83a4d1492
[3143 ms] 1235d021-33db-4515-a2da-89e83a4d1492HOSTNAME=integrationPYTHON_PIP_VERSION=22.3.1HOME=/home/berryGPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696DREMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sockPYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.pyPATH=/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/binREMOTE_CONTAINERS_SOCKETS=["/tmp/vscode-ssh-auth-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock","/tmp/.X11-unix/X32","/home/berry/.gnupg/S.gpg-agent"]LANG=C.UTF-8PYTHON_VERSION=3.10.9PYTHON_SETUPTOOLS_VERSION=65.5.0PWD=/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435PYTHON_GET_PIP_SHA256=1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc61235d021-33db-4515-a2da-89e83a4d1492
[3143 ms] /bin/sh: 0: can't access tty; job control turned off

[3144 ms] userEnvProbe parsed: {
  "HOSTNAME": "integration",
  "PYTHON_PIP_VERSION": "22.3.1",
  "HOME": "/home/berry",
  "GPG_KEY": "A035C8C19219BA821ECEA86B64E628F8D684696D",
  "REMOTE_CONTAINERS_IPC": "/tmp/vscode-remote-containers-ipc-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock",
  "PYTHON_GET_PIP_URL": "https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py",
  "PATH": "/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin",
  "REMOTE_CONTAINERS_SOCKETS": "[\"/tmp/vscode-ssh-auth-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock\",\"/tmp/.X11-unix/X32\",\"/home/berry/.gnupg/S.gpg-agent\"]",
  "LANG": "C.UTF-8",
  "PYTHON_VERSION": "3.10.9",
  "PYTHON_SETUPTOOLS_VERSION": "65.5.0",
  "PWD": "/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435",
  "PYTHON_GET_PIP_SHA256": "1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6"
}
[3144 ms] userEnvProbe PATHs:
Probe:     '/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin'
Container: '/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin'
[3144 ms] Start: Run in container: mkdir -p '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608' && cat > '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json' << 'envJSON'
[3153 ms] 
[3154 ms] 
[3154 ms] Stop (10 ms): Run in container: mkdir -p '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608' && cat > '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json' << 'envJSON'
[3157 ms] Stop (3122 ms): Resolving Remote
[3165 ms] Port forwarding connection from 44410 > 34143 > 34143 in the container.
[3174 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node -e 
[3196 ms] Port forwarding process for 44410 > 34143 > 34143 in the container:
[]
[3425 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[3425 ms] Start: Run: docker buildx version
[3460 ms] Port forwarding 44410 > 34143 > 34143 stderr: Connection established
[3475 ms] Port forwarding connection from 44420 > 34143 > 34143 in the container.
[3482 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node -e 
[3535 ms] Port forwarding process for 44420 > 34143 > 34143 in the container:
[]
[3557 ms] Stop (132 ms): Run: docker buildx version
[3557 ms] github.com/docker/buildx v0.10.4 c513d34
[3558 ms] 
[3564 ms] Start: Run: git rev-parse --show-cdup
[3571 ms] Stop (7 ms): Run: git rev-parse --show-cdup
[3573 ms] Start: Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[3713 ms] Port forwarding 44420 > 34143 > 34143 stderr: Connection established
[3707 ms] Stop (134 ms): Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[3710 ms] Start: Inspecting container
[3710 ms] Start: Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[3795 ms] Stop (85 ms): Run: docker inspect --type container 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb
[3796 ms] Stop (86 ms): Inspecting container
[3797 ms] Start: Run in container: /bin/sh
[3802 ms] Start: Run in container: uname -m
[4003 ms] x86_64
[4004 ms] 
[4004 ms] Stop (202 ms): Run in container: uname -m
[4004 ms] Start: Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[4008 ms] PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
[4008 ms] 
[4008 ms] Stop (4 ms): Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[4008 ms] Start: Run in container: cat /etc/passwd
[4010 ms] Stop (2 ms): Run in container: cat /etc/passwd
[4011 ms] userEnvProbe: loginInteractiveShell (default)
[4011 ms] LifecycleCommandExecutionMap: {
    "onCreateCommand": [],
    "updateContentCommand": [],
    "postCreateCommand": [
        {
            "origin": "ghcr.io/devcontainers/features/git-lfs:1",
            "command": "/usr/local/share/pull-git-lfs-artifacts.sh"
        },
        {
            "origin": "devcontainer.json",
            "command": "bash .devcontainer/post-create-command.sh"
        }
    ],
    "postStartCommand": [],
    "postAttachCommand": [],
    "initializeCommand": []
}
[4011 ms] Start: Run in container: test -f '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json'
[4012 ms] 
[4013 ms] 
[4013 ms] Stop (2 ms): Run in container: test -f '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json'
[4013 ms] Start: Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.onCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-04-13T11:31:12.317922197Z}" != '2023-04-13T11:31:12.317922197Z' ] && echo '2023-04-13T11:31:12.317922197Z' > '/home/berry/.devcontainer/.onCreateCommandMarker'
[4019 ms] 
[4019 ms] 
[4019 ms] Exit code 1
[4019 ms] Stop (6 ms): Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.onCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-04-13T11:31:12.317922197Z}" != '2023-04-13T11:31:12.317922197Z' ] && echo '2023-04-13T11:31:12.317922197Z' > '/home/berry/.devcontainer/.onCreateCommandMarker'
[4020 ms] Start: Run in container: cat '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json'
[4023 ms] {
        "HOSTNAME": "integration",
        "PYTHON_PIP_VERSION": "22.3.1",
        "HOME": "/home/berry",
        "GPG_KEY": "A035C8C19219BA821ECEA86B64E628F8D684696D",
        "REMOTE_CONTAINERS_IPC": "/tmp/vscode-remote-containers-ipc-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock",
        "PYTHON_GET_PIP_URL": "https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py",
        "PATH": "/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin",
        "REMOTE_CONTAINERS_SOCKETS": "[\"/tmp/vscode-ssh-auth-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock\",\"/tmp/.X11-unix/X32\",\"/home/berry/.gnupg/S.gpg-agent\"]",
        "LANG": "C.UTF-8",
        "PYTHON_VERSION": "3.10.9",
        "PYTHON_SETUPTOOLS_VERSION": "65.5.0",
        "PYTHON_GET_PIP_SHA256": "1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6"
}
[4023 ms] 
[4023 ms] Stop (3 ms): Run in container: cat '/tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608/env-loginInteractiveShell.json'
[4023 ms] Start: Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.updateContentCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-04-13T11:31:12.317922197Z}" != '2023-04-13T11:31:12.317922197Z' ] && echo '2023-04-13T11:31:12.317922197Z' > '/home/berry/.devcontainer/.updateContentCommandMarker'
[4027 ms] 
[4027 ms] 
[4027 ms] Exit code 1
[4027 ms] Stop (4 ms): Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.updateContentCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-04-13T11:31:12.317922197Z}" != '2023-04-13T11:31:12.317922197Z' ] && echo '2023-04-13T11:31:12.317922197Z' > '/home/berry/.devcontainer/.updateContentCommandMarker'
[4027 ms] Start: Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.postCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-04-13T11:31:12.317922197Z}" != '2023-04-13T11:31:12.317922197Z' ] && echo '2023-04-13T11:31:12.317922197Z' > '/home/berry/.devcontainer/.postCreateCommandMarker'
[4031 ms] 
[4031 ms] 
[4032 ms] Exit code 1
[4032 ms] Stop (5 ms): Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.postCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-04-13T11:31:12.317922197Z}" != '2023-04-13T11:31:12.317922197Z' ] && echo '2023-04-13T11:31:12.317922197Z' > '/home/berry/.devcontainer/.postCreateCommandMarker'
[4044 ms] Stop (912 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js run-user-commands --container-session-data-folder /tmp/devcontainers-b012e489-2d99-4a6c-a087-28dc2517885f1685440690608 --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --skip-non-blocking-commands false --prebuild false --stop-for-personalization true --remote-env REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock --remote-env SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.sock --remote-env DISPLAY=:32 --remote-env REMOTE_CONTAINERS_DISPLAY_SOCK=/tmp/.X11-unix/X32 --remote-env REMOTE_CONTAINERS=true --mount-workspace-git-root true --terminal-columns 186 --terminal-rows 44 --dotfiles-target-path ~/dotfiles
[4068 ms] Start: Run in container: command -v git >/dev/null 2>&1 && git config --global --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js git-credential-helper $*; }; f' || true
[4077 ms] 
[4077 ms] 
[4077 ms] Stop (9 ms): Run in container: command -v git >/dev/null 2>&1 && git config --global --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-42efd1e9-5b8f-4ee1-a7e3-4e16c2754cd6.js git-credential-helper $*; }; f' || true
[4624 ms] Received message: [{"type":"configure","sequence":1,"options":{"cwd":"/home/integration/berry","dockerCLI":"docker","env":{"SHELL":"/bin/bash","LC_ADDRESS":"fr_FR.UTF-8","LC_NAME":"fr_FR.UTF-8","SSH_AUTH_SOCK":"/tmp/ssh-XXXXSkKHvA/agent.47973","REMOTE_CONTAINERS_IPC":"","LC_MONETARY":"fr_FR.UTF-8","LOGNAME":"integration","XDG_SESSION_TYPE":"tty","MOTD_SHOWN":"pam","HOME":"/home/integration","LC_PAPER":"fr_FR.UTF-8","LANG":"en_US.UTF-8","LS_COLORS":"","SSH_CONNECTION":"192.168.0.67 56938 192.168.0.101 22","LESSCLOSE":"/usr/bin/lesspipe %s %s","XDG_SESSION_CLASS":"user","LC_IDENTIFICATION":"fr_FR.UTF-8","REMOTE_CONTAINERS_SOCKETS":"[]","LESSOPEN":"| /usr/bin/lesspipe %s","USER":"integration","DISPLAY":":0","SHLVL":"1","LC_TELEPHONE":"fr_FR.UTF-8","LC_MEASUREMENT":"fr_FR.UTF-8","XDG_SESSION_ID":"23","XDG_RUNTIME_DIR":"/run/user/1000","SSH_CLIENT":"192.168.0.67 56938 22","LC_TIME":"fr_FR.UTF-8","XDG_DATA_DIRS":"/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop","PATH":"/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin","DBUS_SESSION_BUS_ADDRESS":"unix:path=/run/user/1000/bus","LC_NUMERIC":"fr_FR.UTF-8","_":"/usr/bin/cat","ELECTRON_RUN_AS_NODE":"1","SSH_ASKPASS":"/home/hserrat/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/scripts/ssh-askpass.sh","SSH_ASKPASS_REQUIRE":"force","VSCODE_SSH_ASKPASS_NODE":"/usr/share/code/code","VSCODE_SSH_ASKPASS_EXTRA_ARGS":"--ms-enable-electron-run-as-node","VSCODE_SSH_ASKPASS_MAIN":"/home/hserrat/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/dist/common/sshAskpass.js","VSCODE_SSH_ASKPASS_HANDLE":"/run/user/1000/ssh-askpass-0ca10c4d-3121-457d-8a0a-1e2f4c1f1811.sock","DOCKER_CONTEXT":"default","VSCODE_DOCKER_HOST":"ssh://192.168.0.101"},"containerId":"6b60d4166fecd12a468ef44e2dd82eaf4ff90f72439dd7f1f6c04f6453fe18fb","user":"berry","sessionId":"b012e489-2d99-4a6c-a087-28dc2517885f1685440690608","logLevel":1,"delay":10000}}]
[55107 ms] Start: Run in container: cat /proc/33070/environ
[55116 ms] Stop (9 ms): Run in container: cat /proc/33070/environ
[57615 ms] Host server: X11 connection rejected because of wrong authentication.

It actually works if I remove from the config the ForwardX11. Here is the log without ForwardX11

[44 ms] Dev Containers 0.292.0 in VS Code 1.78.2 (b3e4e68a0bc097f0ae7907b217c1119af9e03435).
[43 ms] Start: Resolving Remote
[65 ms] Start: Run: ssh 192.168.0.101 /bin/sh
[71 ms] Start: Run in host: id -un
[327 ms] integration
[327 ms] 
[328 ms] Stop (257 ms): Run in host: id -un
[328 ms] Start: Run in host: cat /etc/passwd
[330 ms] Stop (2 ms): Run in host: cat /etc/passwd
[330 ms] Start: Run in host: echo ~
[331 ms] /home/integration
[332 ms] 
[332 ms] Stop (2 ms): Run in host: echo ~
[332 ms] Start: Run in host: test -x '/home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node'
[333 ms] 
[334 ms] 
[334 ms] Stop (2 ms): Run in host: test -x '/home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node'
[334 ms] Start: Run in host: test -f '/home/integration/.vscode-remote-containers/dist/vscode-remote-containers-server-0.292.0.js'
[335 ms] 
[335 ms] 
[336 ms] Stop (2 ms): Run in host: test -f '/home/integration/.vscode-remote-containers/dist/vscode-remote-containers-server-0.292.0.js'
[337 ms] userEnvProbe: loginInteractiveShell (default)
[338 ms] userEnvProbe: not found in cache
[338 ms] userEnvProbe shell: /bin/bash
[339 ms] Start: Run in Host: /bin/bash -lic echo -n fe9836a3-d8a0-4a8e-8866-e81caa8f1ca7; cat /proc/self/environ; echo -n fe9836a3-d8a0-4a8e-8866-e81caa8f1ca7
[436 ms] Stop (97 ms): Run in Host: /bin/bash -lic echo -n fe9836a3-d8a0-4a8e-8866-e81caa8f1ca7; cat /proc/self/environ; echo -n fe9836a3-d8a0-4a8e-8866-e81caa8f1ca7
[436 ms] fe9836a3-d8a0-4a8e-8866-e81caa8f1ca7SHELL=/bin/bashLC_ADDRESS=fr_FR.UTF-8LC_NAME=fr_FR.UTF-8SSH_AUTH_SOCK=/tmp/ssh-XXXX2fwUTl/agent.475758REMOTE_CONTAINERS_IPC=LC_MONETARY=fr_FR.UTF-8PWD=/home/integration/berryLOGNAME=integrationXDG_SESSION_TYPE=ttyMOTD_SHOWN=pamHOME=/home/integrationLC_PAPER=fr_FR.UTF-8LANG=en_US.UTF-8LS_COLORS=SSH_CONNECTION=192.168.0.67 42488 192.168.0.101 22LESSCLOSE=/usr/bin/lesspipe %s %sXDG_SESSION_CLASS=userLC_IDENTIFICATION=fr_FR.UTF-8REMOTE_CONTAINERS_SOCKETS=[]LESSOPEN=| /usr/bin/lesspipe %sUSER=integrationSHLVL=1LC_TELEPHONE=fr_FR.UTF-8LC_MEASUREMENT=fr_FR.UTF-8XDG_SESSION_ID=145XDG_RUNTIME_DIR=/run/user/1000SSH_CLIENT=192.168.0.67 42488 22LC_TIME=fr_FR.UTF-8XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktopPATH=/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/binDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/busLC_NUMERIC=fr_FR.UTF-8_=/usr/bin/catfe9836a3-d8a0-4a8e-8866-e81caa8f1ca7
[436 ms] bash: cannot set terminal process group (475759): Inappropriate ioctl for device
bash: no job control in this shell

[437 ms] userEnvProbe parsed: {
  "SHELL": "/bin/bash",
  "LC_ADDRESS": "fr_FR.UTF-8",
  "LC_NAME": "fr_FR.UTF-8",
  "SSH_AUTH_SOCK": "/tmp/ssh-XXXX2fwUTl/agent.475758",
  "REMOTE_CONTAINERS_IPC": "",
  "LC_MONETARY": "fr_FR.UTF-8",
  "PWD": "/home/integration/berry",
  "LOGNAME": "integration",
  "XDG_SESSION_TYPE": "tty",
  "MOTD_SHOWN": "pam",
  "HOME": "/home/integration",
  "LC_PAPER": "fr_FR.UTF-8",
  "LANG": "en_US.UTF-8",
  "LS_COLORS": "",
  "SSH_CONNECTION": "192.168.0.67 42488 192.168.0.101 22",
  "LESSCLOSE": "/usr/bin/lesspipe %s %s",
  "XDG_SESSION_CLASS": "user",
  "LC_IDENTIFICATION": "fr_FR.UTF-8",
  "REMOTE_CONTAINERS_SOCKETS": "[]",
  "LESSOPEN": "| /usr/bin/lesspipe %s",
  "USER": "integration",
  "SHLVL": "1",
  "LC_TELEPHONE": "fr_FR.UTF-8",
  "LC_MEASUREMENT": "fr_FR.UTF-8",
  "XDG_SESSION_ID": "145",
  "XDG_RUNTIME_DIR": "/run/user/1000",
  "SSH_CLIENT": "192.168.0.67 42488 22",
  "LC_TIME": "fr_FR.UTF-8",
  "XDG_DATA_DIRS": "/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop",
  "PATH": "/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin",
  "DBUS_SESSION_BUS_ADDRESS": "unix:path=/run/user/1000/bus",
  "LC_NUMERIC": "fr_FR.UTF-8",
  "_": "/usr/bin/cat"
}
[437 ms] userEnvProbe PATHs:
Probe:     '/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin'
Container: None
[439 ms] Setting up container for folder or workspace: /home/integration/berry
[439 ms] Host: ssh://192.168.0.101
[441 ms] Start: Check Docker is running
[441 ms] Start: Run in Host: docker version --format {{.Server.APIVersion}}
[508 ms] Stop (67 ms): Run in Host: docker version --format {{.Server.APIVersion}}
[509 ms] Server API version: 1.42
[509 ms] Stop (68 ms): Check Docker is running
[509 ms] Start: Run in Host: docker volume ls -q
[574 ms] Stop (65 ms): Run in Host: docker volume ls -q
[575 ms] Start: Run in Host: docker ps -q -a --filter label=vsch.local.folder=/home/integration/berry --filter label=vsch.quality=stable
[643 ms] Stop (68 ms): Run in Host: docker ps -q -a --filter label=vsch.local.folder=/home/integration/berry --filter label=vsch.quality=stable
[644 ms] Start: Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[713 ms] Stop (69 ms): Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[714 ms] Start: Run in Host: docker inspect --type container 33f3bfdc815b
[777 ms] Stop (63 ms): Run in Host: docker inspect --type container 33f3bfdc815b
[778 ms] Start: Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry
[847 ms] Stop (69 ms): Run in Host: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry
[848 ms] Start: Run in Host: docker inspect --type container 33f3bfdc815b
[912 ms] Stop (64 ms): Run in Host: docker inspect --type container 33f3bfdc815b
[913 ms] Start: Run in Host: docker exec -i -u root 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /bin/sh -c echo "Container already running. Keep-alive process started." ; export VSCODE_REMOTE_CONTAINERS_SESSION=8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 ; /bin/sh
[921 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --mount-workspace-git-root true
[1061 ms] Container already running. Keep-alive process started.
[1167 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[1167 ms] Start: Run: git rev-parse --show-cdup
[1174 ms] Stop (7 ms): Run: git rev-parse --show-cdup
[1175 ms] Start: Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1245 ms] Stop (70 ms): Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1246 ms] Start: Run: docker inspect --type container 33f3bfdc815b
[1309 ms] Stop (63 ms): Run: docker inspect --type container 33f3bfdc815b
[1313 ms] Stop (392 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --mount-workspace-git-root true
[1387 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js up --container-session-data-folder /tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 --workspace-folder /home/integration/berry --workspace-mount-consistency cached --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --mount type=volume,source=vscode,target=/vscode,external=true --skip-post-create --update-remote-user-uid-default on --mount-workspace-git-root true
[1662 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[1662 ms] Start: Run: docker buildx version
[1768 ms] Stop (106 ms): Run: docker buildx version
[1768 ms] github.com/docker/buildx v0.10.4 c513d34
[1769 ms] 
[1769 ms] Start: Resolving Remote
[1772 ms] Start: Run: git rev-parse --show-cdup
[1777 ms] Stop (5 ms): Run: git rev-parse --show-cdup
[1778 ms] Start: Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1848 ms] Stop (70 ms): Run: docker ps -q -a --filter label=devcontainer.local_folder=/home/integration/berry --filter label=devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json
[1848 ms] Start: Run: docker inspect --type container 33f3bfdc815b
[1909 ms] Stop (61 ms): Run: docker inspect --type container 33f3bfdc815b
[1911 ms] Start: Inspecting container
[1911 ms] Start: Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[1979 ms] Stop (68 ms): Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[1980 ms] Stop (69 ms): Inspecting container
[1980 ms] Start: Run in container: /bin/sh
[1984 ms] Start: Run in container: uname -m
[2116 ms] x86_64
[2116 ms] 
[2116 ms] Stop (132 ms): Run in container: uname -m
[2116 ms] Start: Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[2118 ms] PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
[2118 ms] 
[2118 ms] Stop (2 ms): Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[2119 ms] Start: Run in container: cat /etc/passwd
[2121 ms] Stop (2 ms): Run in container: cat /etc/passwd
[2121 ms] Start: Run in container: test -f '/var/devcontainer/.patchEtcEnvironmentMarker'
[2122 ms] 
[2122 ms] 
[2122 ms] Stop (1 ms): Run in container: test -f '/var/devcontainer/.patchEtcEnvironmentMarker'
[2122 ms] Start: Run in container: test -f '/var/devcontainer/.patchEtcProfileMarker'
[2123 ms] 
[2123 ms] 
[2123 ms] Stop (1 ms): Run in container: test -f '/var/devcontainer/.patchEtcProfileMarker'
[2123 ms] Stop (354 ms): Resolving Remote
[2128 ms] Stop (741 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js up --container-session-data-folder /tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 --workspace-folder /home/integration/berry --workspace-mount-consistency cached --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --mount type=volume,source=vscode,target=/vscode,external=true --skip-post-create --update-remote-user-uid-default on --mount-workspace-git-root true
[2128 ms] Start: Run in Host: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[2201 ms] Stop (73 ms): Run in Host: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[2206 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --include-merged-configuration --mount-workspace-git-root true
[2404 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[2404 ms] Start: Run: git rev-parse --show-cdup
[2412 ms] Stop (8 ms): Run: git rev-parse --show-cdup
[2413 ms] Start: Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[2476 ms] Stop (63 ms): Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[2482 ms] Stop (276 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js read-configuration --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --include-merged-configuration --mount-workspace-git-root true
[2482 ms] Start: Inspecting container
[2483 ms] Start: Run in Host: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[2548 ms] Stop (65 ms): Run in Host: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[2549 ms] Stop (67 ms): Inspecting container
[2554 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /bin/sh
[2565 ms] Start: Run in container: uname -m
[2717 ms] x86_64
[2717 ms] 
[2718 ms] Stop (153 ms): Run in container: uname -m
[2718 ms] Start: Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[2720 ms] PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
[2720 ms] 
[2720 ms] Stop (2 ms): Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[2721 ms] Start: Run in container: cat /etc/passwd
[2723 ms] Stop (2 ms): Run in container: cat /etc/passwd
[2724 ms] Start: Setup shutdown monitor
[2725 ms] Forking shutdown monitor: /home/user/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/dist/shutdown/shutdownMonitorProcess /run/user/1000/vscode-remote-containers-1d58a731-d6b1-4d46-b8e9-2d6e5e8f540a.sock singleContainer Trace /home/user/.config/Code/logs/20230530T114919/window5/exthost/ms-vscode-remote.remote-containers 1685616198674
[2733 ms] Stop (9 ms): Setup shutdown monitor
[2734 ms] Start: Run in container: test -d /home/berry/.vscode-server
[2747 ms] 
[2748 ms] 
[2748 ms] Stop (14 ms): Run in container: test -d /home/berry/.vscode-server
[2748 ms] Start: Run in container: test ! -f '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' && set -o noclobber && mkdir -p '/home/berry/.vscode-server/data/Machine' && { > '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' ; } 2> /dev/null
[2750 ms] 
[2750 ms] 
[2751 ms] Exit code 1
[2751 ms] Stop (3 ms): Run in container: test ! -f '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' && set -o noclobber && mkdir -p '/home/berry/.vscode-server/data/Machine' && { > '/home/berry/.vscode-server/data/Machine/.writeMachineSettingsMarker' ; } 2> /dev/null
[2751 ms] Start: Run in container: cat /home/berry/.vscode-server/data/Machine/settings.json
[2755 ms] 
[2755 ms] cat: /home/berry/.vscode-server/data/Machine/settings.json: No such file or directory
[2755 ms] Exit code 1
[2756 ms] Stop (5 ms): Run in container: cat /home/berry/.vscode-server/data/Machine/settings.json
[2756 ms] Start: Run in container: test -d /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2758 ms] 
[2759 ms] 
[2759 ms] Stop (3 ms): Run in container: test -d /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2759 ms] Start: Run in container: test -d /vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2761 ms] 
[2761 ms] 
[2761 ms] Stop (2 ms): Run in container: test -d /vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435
[2762 ms] Start: Run in Host: docker exec -i -u root 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /bin/sh
[2762 ms] Start: Launching Dev Containers helper.
[2762 ms] ssh-agent: SSH_AUTH_SOCK in container (/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock) forwarded to ssh host (/tmp/ssh-XXXX2fwUTl/agent.475758).
[2762 ms] X11 forwarding: DISPLAY not set on ssh host.
[2763 ms] Start: Run in container: test -e /tmp/.X11-unix/X0
[2767 ms] Start: Run in container: touch '/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[2771 ms] 
[2771 ms] 
[2771 ms] Stop (8 ms): Run in container: test -e /tmp/.X11-unix/X0
[2772 ms] Start: Run in container: test -e /tmp/.X11-unix/X1
[2774 ms] 
[2774 ms] 
[2774 ms] Exit code 1
[2774 ms] Stop (2 ms): Run in container: test -e /tmp/.X11-unix/X1
[2775 ms] Start: Run in container: mkdir -p '/tmp/.X11-unix'
[2779 ms] 
[2780 ms] 
[2780 ms] Stop (5 ms): Run in container: mkdir -p '/tmp/.X11-unix'
[2780 ms] X11 forwarding: DISPLAY in container (:1) forwarded to local host (:0).
[2780 ms] Start: Run in container: gpgconf --list-dir agent-socket
[2784 ms] /home/berry/.gnupg/S.gpg-agent
[2784 ms] 
[2784 ms] Stop (4 ms): Run in container: gpgconf --list-dir agent-socket
[2784 ms] Start: Run in container: gpgconf --list-dir homedir
[2788 ms] /home/berry/.gnupg
[2789 ms] 
[2789 ms] Stop (5 ms): Run in container: gpgconf --list-dir homedir
[2789 ms] Start: Run in container: ls '/home/berry/.gnupg/private-keys-v1.d' 2>/dev/null
[2793 ms] 
[2793 ms] 
[2793 ms] Exit code 2
[2793 ms] Stop (4 ms): Run in container: ls '/home/berry/.gnupg/private-keys-v1.d' 2>/dev/null
[2793 ms] Start: Run in Host: gpgconf --list-dir agent-extra-socket
[2798 ms] Stop (5 ms): Run in Host: gpgconf --list-dir agent-extra-socket
[2799 ms] /run/user/1000/gnupg/S.gpg-agent.extra
[2799 ms] 
[2799 ms] Start: Run in container: mkdir -p -m 700 '/home/berry/.gnupg'
[2799 ms] gpg-agent: Socket in container (/home/berry/.gnupg/S.gpg-agent) forwarded to ssh host (/run/user/1000/gnupg/S.gpg-agent.extra).
[2802 ms] 
[2803 ms] 
[2803 ms] Stop (4 ms): Run in container: mkdir -p -m 700 '/home/berry/.gnupg'
[2803 ms] Start: Run in container: command -v docker >/dev/null 2>&1
[2803 ms] Start: Run in Host: gpgconf --list-dir homedir
[2808 ms] 
[2808 ms] 
[2808 ms] Exit code 127
[2809 ms] Stop (6 ms): Run in container: command -v docker >/dev/null 2>&1
[2809 ms] Start: Run in Host: docker exec -i -u berry 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /bin/sh
[2809 ms] Stop (47 ms): Launching Dev Containers helper.
[2810 ms] userEnvProbe: loginInteractiveShell (default)
[2810 ms] Start: Run in container: test -f '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json'
[2813 ms] Stop (10 ms): Run in Host: gpgconf --list-dir homedir
[2814 ms] /home/integration/.gnupg
[2814 ms] 
[2815 ms] Start: Run in container: echo ~
[2820 ms] 
[2820 ms] 
[2820 ms] Exit code 1
[2820 ms] Stop (10 ms): Run in container: test -f '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json'
[2820 ms] Start: Run in container: gpgconf --list-dir homedir
[2821 ms] userEnvProbe: not found in cache
[2821 ms] userEnvProbe shell: /bin/sh
[2824 ms] /home/berry/.gnupg
[2824 ms] 
[2825 ms] Stop (5 ms): Run in container: gpgconf --list-dir homedir
[2825 ms] Start: Run in container: # Test for /home/berry/.ssh/known_hosts and ssh
[2831 ms] /home/berry/.ssh/known_hosts exists
[2831 ms] 
[2832 ms] Exit code 1
[2832 ms] Stop (7 ms): Run in container: # Test for /home/berry/.ssh/known_hosts and ssh
[2833 ms] Start: Run in container: # Test for /home/berry/.gnupg/pubring.kbx and gpg
[2835 ms] /home/berry/.gnupg/pubring.kbx exists
[2835 ms] 
[2835 ms] Exit code 1
[2836 ms] Stop (3 ms): Run in container: # Test for /home/berry/.gnupg/pubring.kbx and gpg
[2850 ms] Start: Run in container: # Test for /home/berry/.gnupg/trustdb.gpg and gpg
[2852 ms] /home/berry/.gnupg/trustdb.gpg exists
[2853 ms] 
[2853 ms] Exit code 1
[2853 ms] Stop (3 ms): Run in container: # Test for /home/berry/.gnupg/trustdb.gpg and gpg
[2853 ms] Start: Run in Host: gpg-connect-agent updatestartuptty /bye
[2864 ms] Stop (11 ms): Run in Host: gpg-connect-agent updatestartuptty /bye
[2881 ms] Starting monitor process...
[2893 ms] Received message: [{"type":"configure","sequence":0,"options":{"cwd":"/home/integration/berry","dockerCLI":"docker","env":{"SHELL":"/bin/bash","LC_ADDRESS":"fr_FR.UTF-8","LC_NAME":"fr_FR.UTF-8","SSH_AUTH_SOCK":"/tmp/ssh-XXXX2fwUTl/agent.475758","REMOTE_CONTAINERS_IPC":"","LC_MONETARY":"fr_FR.UTF-8","LOGNAME":"integration","XDG_SESSION_TYPE":"tty","MOTD_SHOWN":"pam","HOME":"/home/integration","LC_PAPER":"fr_FR.UTF-8","LANG":"en_US.UTF-8","LS_COLORS":"","SSH_CONNECTION":"192.168.0.67 42488 192.168.0.101 22","LESSCLOSE":"/usr/bin/lesspipe %s %s","XDG_SESSION_CLASS":"user","LC_IDENTIFICATION":"fr_FR.UTF-8","REMOTE_CONTAINERS_SOCKETS":"[]","LESSOPEN":"| /usr/bin/lesspipe %s","USER":"integration","SHLVL":"1","LC_TELEPHONE":"fr_FR.UTF-8","LC_MEASUREMENT":"fr_FR.UTF-8","XDG_SESSION_ID":"145","XDG_RUNTIME_DIR":"/run/user/1000","SSH_CLIENT":"192.168.0.67 42488 22","LC_TIME":"fr_FR.UTF-8","XDG_DATA_DIRS":"/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop","PATH":"/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin","DBUS_SESSION_BUS_ADDRESS":"unix:path=/run/user/1000/bus","LC_NUMERIC":"fr_FR.UTF-8","_":"/usr/bin/cat","DISPLAY":":0","ELECTRON_RUN_AS_NODE":"1","SSH_ASKPASS":"/home/user/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/scripts/ssh-askpass.sh","SSH_ASKPASS_REQUIRE":"force","VSCODE_SSH_ASKPASS_NODE":"/usr/share/code/code","VSCODE_SSH_ASKPASS_EXTRA_ARGS":"--ms-enable-electron-run-as-node","VSCODE_SSH_ASKPASS_MAIN":"/home/user/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/dist/common/sshAskpass.js","VSCODE_SSH_ASKPASS_HANDLE":"/run/user/1000/ssh-askpass-d713ad8b-6375-4f19-af37-0bb0825e6eee.sock","DOCKER_CONTEXT":"default","VSCODE_DOCKER_HOST":"ssh://192.168.0.101"},"containerId":"33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7","user":"berry","sessionId":"8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969","logLevel":1,"delay":10000}}]
[2929 ms] 
[2929 ms] 
[2929 ms] Stop (162 ms): Run in container: touch '/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[2929 ms] Start: Run in container: command -v git >/dev/null 2>&1 && git config --system --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js git-credential-helper $*; }; f' || true
[2933 ms] 
[2934 ms] 
[2934 ms] Stop (5 ms): Run in container: command -v git >/dev/null 2>&1 && git config --system --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js git-credential-helper $*; }; f' || true
[2934 ms] Start: Run in container: for pid in `cd /proc && ls -d [0-9]*`; do { echo $pid ; readlink /proc/$pid/cwd || echo ; readlink /proc/$pid/ns/mnt || echo ; cat /proc/$pid/stat | tr "
[3019 ms] /home/berry
[3019 ms] 
[3019 ms] Stop (204 ms): Run in container: echo ~
[3019 ms] Start: Run in container: cat <<'EOF-/tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js' >/tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js
[3026 ms] 
[3026 ms] 
[3027 ms] Stop (8 ms): Run in container: cat <<'EOF-/tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js' >/tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js
[3027 ms] Start: Run in container: cat <<'EOF-/tmp/vscode-remote-containers-server-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js' >/tmp/vscode-remote-containers-server-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js_1685616201701
[3036 ms] 
[3036 ms] 
[3036 ms] Stop (9 ms): Run in container: cat <<'EOF-/tmp/vscode-remote-containers-server-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js' >/tmp/vscode-remote-containers-server-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js_1685616201701
[3039 ms] Start: Run in Container: /bin/sh -lic echo -n bc1f3458-8256-452c-960a-c4aaaddd8ff4; cat /proc/self/environ; echo -n bc1f3458-8256-452c-960a-c4aaaddd8ff4
[3133 ms] Stop (199 ms): Run in container: for pid in `cd /proc && ls -d [0-9]*`; do { echo $pid ; readlink /proc/$pid/cwd || echo ; readlink /proc/$pid/ns/mnt || echo ; cat /proc/$pid/stat | tr "
[3135 ms] Start: Run in container: cat '/home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/product.json'
[3139 ms] Stop (4 ms): Run in container: cat '/home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/product.json'
[3140 ms] Running extension host agents:
[
  {
    "pid": "198",
    "ppid": "0",
    "pgrp": "198",
    "cwd": "/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435",
    "mntNS": "mnt:[4026532526]",
    "cmd": "sh /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/bin/code-server --log trace --force-disable-user-env --server-data-dir /home/berry/.vscode-server --telemetry-level all --accept-server-license-terms --host 127.0.0.1 --port 0 --connection-token-file /home/berry/.vscode-server/data/Machine/.connection-token-b3e4e68a0bc097f0ae7907b217c1119af9e03435 --extensions-download-dir /home/berry/.vscode-server/extensionsCache --install-extension ms-python.python --install-extension ms-python.isort --install-extension ms-python.flake8 --install-extension ms-python.black-formatter --install-extension d-biehl.robotcode --install-extension atlassian.atlascode --install-extension eamodio.gitlens --install-extension tamasfe.even-better-toml --install-extension njpwerner.autodocstring --install-extension ms-azuretools.vscode-docker --start-server  ",
    "env": {
      "PATH": "/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin",
      "HOSTNAME": "integration-bilberry-qa",
      "LANG": "C.UTF-8",
      "GPG_KEY": "A035C8C19219BA821ECEA86B64E628F8D684696D",
      "PYTHON_VERSION": "3.10.9",
      "PYTHON_PIP_VERSION": "22.3.1",
      "PYTHON_SETUPTOOLS_VERSION": "65.5.0",
      "PYTHON_GET_PIP_URL": "https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py",
      "PYTHON_GET_PIP_SHA256": "1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6",
      "HOME": "/home/berry",
      "SHELL": "/bin/sh",
      "VSCODE_AGENT_FOLDER": "/home/berry/.vscode-server"
    }
  }
]
[3140 ms] Extension host agent is already running.
[3140 ms] Start: Run in container: cat '/home/berry/.vscode-server/data/Machine/.devport-b3e4e68a0bc097f0ae7907b217c1119af9e03435' 2>/dev/null
[3143 ms] 37529
[3143 ms] 
[3143 ms] Stop (3 ms): Run in container: cat '/home/berry/.vscode-server/data/Machine/.devport-b3e4e68a0bc097f0ae7907b217c1119af9e03435' 2>/dev/null
[3143 ms] Start: Run in container: cat '/home/berry/.vscode-server/data/Machine/.connection-token-b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[3149 ms] cd21b0f1-a4a3-4541-a1e1-1654793c0cbb
[3149 ms] 
[3149 ms] Stop (6 ms): Run in container: cat '/home/berry/.vscode-server/data/Machine/.connection-token-b3e4e68a0bc097f0ae7907b217c1119af9e03435'
[3150 ms] Port forwarding for container port 37529 starts listening on local port.
[3150 ms] Port forwarding local port 37529 to container port 37529
[3164 ms] Start: Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js run-user-commands --container-session-data-folder /tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --skip-non-blocking-commands false --prebuild false --stop-for-personalization true --remote-env REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock --remote-env SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock --remote-env DISPLAY=:1 --remote-env REMOTE_CONTAINERS_DISPLAY_SOCK=/tmp/.X11-unix/X1 --remote-env REMOTE_CONTAINERS=true --mount-workspace-git-root true --dotfiles-target-path ~/dotfiles
[3170 ms] Stop (131 ms): Run in Container: /bin/sh -lic echo -n bc1f3458-8256-452c-960a-c4aaaddd8ff4; cat /proc/self/environ; echo -n bc1f3458-8256-452c-960a-c4aaaddd8ff4
[3170 ms] bc1f3458-8256-452c-960a-c4aaaddd8ff4HOSTNAME=integration-bilberry-qaPYTHON_PIP_VERSION=22.3.1HOME=/home/berryGPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696DREMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sockPYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.pyPATH=/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/binREMOTE_CONTAINERS_SOCKETS=["/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock","/tmp/.X11-unix/X1","/home/berry/.gnupg/S.gpg-agent"]LANG=C.UTF-8PYTHON_VERSION=3.10.9PYTHON_SETUPTOOLS_VERSION=65.5.0PWD=/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435PYTHON_GET_PIP_SHA256=1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6bc1f3458-8256-452c-960a-c4aaaddd8ff4
[3171 ms] /bin/sh: 0: can't access tty; job control turned off

[3171 ms] userEnvProbe parsed: {
  "HOSTNAME": "integration-bilberry-qa",
  "PYTHON_PIP_VERSION": "22.3.1",
  "HOME": "/home/berry",
  "GPG_KEY": "A035C8C19219BA821ECEA86B64E628F8D684696D",
  "REMOTE_CONTAINERS_IPC": "/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock",
  "PYTHON_GET_PIP_URL": "https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py",
  "PATH": "/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin",
  "REMOTE_CONTAINERS_SOCKETS": "[\"/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock\",\"/tmp/.X11-unix/X1\",\"/home/berry/.gnupg/S.gpg-agent\"]",
  "LANG": "C.UTF-8",
  "PYTHON_VERSION": "3.10.9",
  "PYTHON_SETUPTOOLS_VERSION": "65.5.0",
  "PWD": "/vscode/vscode-server/bin/linux-x64/b3e4e68a0bc097f0ae7907b217c1119af9e03435",
  "PYTHON_GET_PIP_SHA256": "1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6"
}
[3171 ms] userEnvProbe PATHs:
Probe:     '/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin'
Container: '/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin'
[3171 ms] Start: Run in container: mkdir -p '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969' && cat > '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json' << 'envJSON'
[3176 ms] 
[3177 ms] 
[3177 ms] Stop (6 ms): Run in container: mkdir -p '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969' && cat > '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json' << 'envJSON'
[3179 ms] Stop (3136 ms): Resolving Remote
[3189 ms] Port forwarding connection from 35804 > 37529 > 37529 in the container.
[3198 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node -e 
[3220 ms] Port forwarding process for 35804 > 37529 > 37529 in the container:
[]
[3494 ms] Port forwarding 35804 > 37529 > 37529 stderr: Connection established
[3496 ms] @devcontainers/cli 0.40.0. Node.js v16.17.1. linux 5.19.0-42-generic x64.
[3496 ms] Start: Run: docker buildx version
[3508 ms] Port forwarding connection from 54758 > 37529 > 37529 in the container.
[3515 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node -e 
[3537 ms] Port forwarding process for 54758 > 37529 > 37529 in the container:
[]
[3677 ms] Stop (181 ms): Run: docker buildx version
[3678 ms] github.com/docker/buildx v0.10.4 c513d34
[3678 ms] 
[3685 ms] Start: Run: git rev-parse --show-cdup
[3691 ms] Stop (6 ms): Run: git rev-parse --show-cdup
[3693 ms] Start: Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[3765 ms] Port forwarding 54758 > 37529 > 37529 stderr: Connection established
[3791 ms] Stop (98 ms): Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[3795 ms] Start: Inspecting container
[3795 ms] Start: Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[3912 ms] Stop (117 ms): Run: docker inspect --type container 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7
[3913 ms] Stop (118 ms): Inspecting container
[3916 ms] Start: Run in container: /bin/sh
[3927 ms] Start: Run in container: uname -m
[4144 ms] x86_64
[4144 ms] 
[4145 ms] Stop (218 ms): Run in container: uname -m
[4145 ms] Start: Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[4148 ms] PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
[4148 ms] 
[4148 ms] Stop (3 ms): Run in container: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null
[4148 ms] Start: Run in container: cat /etc/passwd
[4153 ms] Stop (5 ms): Run in container: cat /etc/passwd
[4153 ms] userEnvProbe: loginInteractiveShell (default)
[4154 ms] LifecycleCommandExecutionMap: {
    "onCreateCommand": [],
    "updateContentCommand": [],
    "postCreateCommand": [
        {
            "origin": "ghcr.io/devcontainers/features/git-lfs:1",
            "command": "/usr/local/share/pull-git-lfs-artifacts.sh"
        },
        {
            "origin": "devcontainer.json",
            "command": "bash .devcontainer/post-create-command.sh"
        }
    ],
    "postStartCommand": [],
    "postAttachCommand": [],
    "initializeCommand": []
}
[4154 ms] Start: Run in container: test -f '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json'
[4156 ms] 
[4156 ms] 
[4156 ms] Stop (2 ms): Run in container: test -f '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json'
[4156 ms] Start: Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.onCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-06-01T10:14:40.288031311Z}" != '2023-06-01T10:14:40.288031311Z' ] && echo '2023-06-01T10:14:40.288031311Z' > '/home/berry/.devcontainer/.onCreateCommandMarker'
[4169 ms] 
[4169 ms] 
[4169 ms] Exit code 1
[4169 ms] Stop (13 ms): Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.onCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-06-01T10:14:40.288031311Z}" != '2023-06-01T10:14:40.288031311Z' ] && echo '2023-06-01T10:14:40.288031311Z' > '/home/berry/.devcontainer/.onCreateCommandMarker'
[4169 ms] Start: Run in container: cat '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json'
[4173 ms] {
        "HOSTNAME": "integration-bilberry-qa",
        "PYTHON_PIP_VERSION": "22.3.1",
        "HOME": "/home/berry",
        "GPG_KEY": "A035C8C19219BA821ECEA86B64E628F8D684696D",
        "REMOTE_CONTAINERS_IPC": "/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock",
        "PYTHON_GET_PIP_URL": "https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py",
        "PATH": "/home/berry/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/berry/.local/bin",
        "REMOTE_CONTAINERS_SOCKETS": "[\"/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock\",\"/tmp/.X11-unix/X1\",\"/home/berry/.gnupg/S.gpg-agent\"]",
        "LANG": "C.UTF-8",
        "PYTHON_VERSION": "3.10.9",
        "PYTHON_SETUPTOOLS_VERSION": "65.5.0",
        "PYTHON_GET_PIP_SHA256": "1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6"
}
[4173 ms] 
[4173 ms] Stop (4 ms): Run in container: cat '/tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969/env-loginInteractiveShell.json'
[4174 ms] Start: Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.updateContentCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-06-01T10:14:40.288031311Z}" != '2023-06-01T10:14:40.288031311Z' ] && echo '2023-06-01T10:14:40.288031311Z' > '/home/berry/.devcontainer/.updateContentCommandMarker'
[4180 ms] 
[4180 ms] 
[4180 ms] Exit code 1
[4181 ms] Stop (7 ms): Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.updateContentCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-06-01T10:14:40.288031311Z}" != '2023-06-01T10:14:40.288031311Z' ] && echo '2023-06-01T10:14:40.288031311Z' > '/home/berry/.devcontainer/.updateContentCommandMarker'
[4181 ms] Start: Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.postCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-06-01T10:14:40.288031311Z}" != '2023-06-01T10:14:40.288031311Z' ] && echo '2023-06-01T10:14:40.288031311Z' > '/home/berry/.devcontainer/.postCreateCommandMarker'
[4187 ms] 
[4187 ms] 
[4187 ms] Exit code 1
[4188 ms] Stop (7 ms): Run in container: mkdir -p '/home/berry/.devcontainer' && CONTENT="$(cat '/home/berry/.devcontainer/.postCreateCommandMarker' 2>/dev/null || echo ENOENT)" && [ "${CONTENT:-2023-06-01T10:14:40.288031311Z}" != '2023-06-01T10:14:40.288031311Z' ] && echo '2023-06-01T10:14:40.288031311Z' > '/home/berry/.devcontainer/.postCreateCommandMarker'
[4195 ms] Stop (1031 ms): Run in Host: /home/integration/.vscode-remote-containers/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /home/integration/.vscode-remote-containers/dist/dev-containers-cli-0.292.0/dist/spec-node/devContainersSpecCLI.js run-user-commands --container-session-data-folder /tmp/devcontainers-8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 --workspace-folder /home/integration/berry --id-label devcontainer.local_folder=/home/integration/berry --id-label devcontainer.config_file=/home/integration/berry/.devcontainer/devcontainer.json --container-id 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 --log-level trace --log-format json --config /home/integration/berry/.devcontainer/devcontainer.json --default-user-env-probe loginInteractiveShell --skip-non-blocking-commands false --prebuild false --stop-for-personalization true --remote-env REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock --remote-env SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock --remote-env DISPLAY=:1 --remote-env REMOTE_CONTAINERS_DISPLAY_SOCK=/tmp/.X11-unix/X1 --remote-env REMOTE_CONTAINERS=true --mount-workspace-git-root true --dotfiles-target-path ~/dotfiles
[4208 ms] Start: Run in container: command -v git >/dev/null 2>&1 && git config --global --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js git-credential-helper $*; }; f' || true
[4219 ms] 
[4219 ms] 
[4219 ms] Stop (11 ms): Run in container: command -v git >/dev/null 2>&1 && git config --global --replace-all credential.helper '!f() { /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node /tmp/vscode-remote-containers-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.js git-credential-helper $*; }; f' || true
[4545 ms] Received message: [{"type":"configure","sequence":1,"options":{"cwd":"/home/integration/berry","dockerCLI":"docker","env":{"SHELL":"/bin/bash","LC_ADDRESS":"fr_FR.UTF-8","LC_NAME":"fr_FR.UTF-8","SSH_AUTH_SOCK":"/tmp/ssh-XXXX2fwUTl/agent.475758","REMOTE_CONTAINERS_IPC":"","LC_MONETARY":"fr_FR.UTF-8","LOGNAME":"integration","XDG_SESSION_TYPE":"tty","MOTD_SHOWN":"pam","HOME":"/home/integration","LC_PAPER":"fr_FR.UTF-8","LANG":"en_US.UTF-8","LS_COLORS":"","SSH_CONNECTION":"192.168.0.67 42488 192.168.0.101 22","LESSCLOSE":"/usr/bin/lesspipe %s %s","XDG_SESSION_CLASS":"user","LC_IDENTIFICATION":"fr_FR.UTF-8","REMOTE_CONTAINERS_SOCKETS":"[]","LESSOPEN":"| /usr/bin/lesspipe %s","USER":"integration","SHLVL":"1","LC_TELEPHONE":"fr_FR.UTF-8","LC_MEASUREMENT":"fr_FR.UTF-8","XDG_SESSION_ID":"145","XDG_RUNTIME_DIR":"/run/user/1000","SSH_CLIENT":"192.168.0.67 42488 22","LC_TIME":"fr_FR.UTF-8","XDG_DATA_DIRS":"/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop","PATH":"/home/integration/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin","DBUS_SESSION_BUS_ADDRESS":"unix:path=/run/user/1000/bus","LC_NUMERIC":"fr_FR.UTF-8","_":"/usr/bin/cat","DISPLAY":":0","ELECTRON_RUN_AS_NODE":"1","SSH_ASKPASS":"/home/user/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/scripts/ssh-askpass.sh","SSH_ASKPASS_REQUIRE":"force","VSCODE_SSH_ASKPASS_NODE":"/usr/share/code/code","VSCODE_SSH_ASKPASS_EXTRA_ARGS":"--ms-enable-electron-run-as-node","VSCODE_SSH_ASKPASS_MAIN":"/home/user/.vscode/extensions/ms-vscode-remote.remote-containers-0.292.0/dist/common/sshAskpass.js","VSCODE_SSH_ASKPASS_HANDLE":"/run/user/1000/ssh-askpass-d713ad8b-6375-4f19-af37-0bb0825e6eee.sock","DOCKER_CONTEXT":"default","VSCODE_DOCKER_HOST":"ssh://192.168.0.101"},"containerId":"33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7","user":"berry","sessionId":"8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969","logLevel":1,"delay":10000}}]
[5329 ms] Port forwarding connection from 54766 > 37529 > 37529 in the container.
[5337 ms] Start: Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node -e 
[5360 ms] Port forwarding process for 54766 > 37529 > 37529 in the container:
[]
[5636 ms] Port forwarding 54766 > 37529 > 37529 stderr: Connection established
[6441 ms] Start: Run in container: cat /proc/988/environ
[6449 ms] Stop (8 ms): Run in container: cat /proc/988/environ
[6450 ms] Start: Run in container: rm '/tmp/vscode-remote-containers-ipc-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock' && ln -s '/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock' '/tmp/vscode-remote-containers-ipc-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock'
[6458 ms] 
[6458 ms] 
[6459 ms] Stop (9 ms): Run in container: rm '/tmp/vscode-remote-containers-ipc-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock' && ln -s '/tmp/vscode-remote-containers-ipc-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock' '/tmp/vscode-remote-containers-ipc-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock'
[6459 ms] Start: Run in container: rm '/tmp/vscode-ssh-auth-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock' && ln -s '/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock' '/tmp/vscode-ssh-auth-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock'
[6464 ms] 
[6464 ms] 
[6464 ms] Stop (5 ms): Run in container: rm '/tmp/vscode-ssh-auth-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock' && ln -s '/tmp/vscode-ssh-auth-73a22ae8-fbae-4e08-b090-8e19c9a2d7b4.sock' '/tmp/vscode-ssh-auth-b234a8c0-9be7-4ec7-8c08-9a1765223219.sock'
[6465 ms] Start: Run in container: rm '/tmp/.X11-unix/X0' && ln -s '/tmp/.X11-unix/X1' '/tmp/.X11-unix/X0'
[6469 ms] 
[6470 ms] 
[6470 ms] Stop (5 ms): Run in container: rm '/tmp/.X11-unix/X0' && ln -s '/tmp/.X11-unix/X1' '/tmp/.X11-unix/X0'
[10644 ms] Port forwarding 54766 > 37529 > 37529 stderr: Remote close
[10650 ms] Stop (5313 ms): Run in Host: docker exec -i -u berry -e VSCODE_REMOTE_CONTAINERS_SESSION=8b064c6e-c351-4dc0-a947-ed38fcf6bbdc1685616197969 33f3bfdc815bd40b3c53067e2a1cbe01c02bb70cc1cdb49438590cc256cdb7e7 /home/berry/.vscode-server/bin/b3e4e68a0bc097f0ae7907b217c1119af9e03435/node -e 
[10651 ms] Port forwarding 54766 > 37529 > 37529 terminated with code 0 and signal null.

Unfortunately the ForwardX11 yes is quite pratical. Is there a way to still have it in the configs ?

chrmarti commented 1 year ago

With ForwardX11 it says: X11 forwarding: DISPLAY in container (:32) forwarded to ssh host (localhost:10.0). We will need to investigate why that doesn't work.

As a workaround you could add a second entry with a different name and X11 forwarding omitted to you ssh config and use that to connect when using a dev container.

atticusrussell commented 1 year ago

I'm having a pretty similar issue. I can add my details if it would be helpful.

hccz95 commented 11 months ago
  • VSCode Version: 1.78.2
  • Local OS Version: Ubuntu 22.04
  • Remote OS Version: Ubuntu 22.04
  • Remote Extension/Connection Type: Containers/Server

I solved this:

  1. ensure you can connect to the ssh remote host, and the x11-forwarding works (xclock can display), then execute echo $DISPLAY on the remote host and copy the output display address like xxxx:10.0;
  2. start a dev-container using following config:
    
    {
        "name": "Existing Dockerfile",
        "build": {
            // Sets the run context to one level up instead of the .devcontainer folder.
            "context": "..",
            // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
            "dockerfile": "../Dockerfile"
        },

    "runArgs": [         "--gpus", "all",         "--net", "host",         // "-e", "DISPLAY=${env:DISPLAY}",  // 无法读取宿主机的变量         "-v", "/tmp/.X11-unix:/tmp/.X11-unix",         "-v", "/home/kk/.Xauthority:/root/.Xauthority:ro",     ],

// other things......

}


3. enter the container and execute `export DISPLAY=`xxxx:10.0`, `xxxx:10.0` is get in the first step.
4. execute `xclock` in the container, the x11-forwarding works.
Ryanf55 commented 5 months ago

It's a shame this repo was archived: https://github.com/joelspadin/vscode-remote-x11/issues

And, there is no support to automatically set DISPLAY with anything in VSCode.

chrmarti commented 5 months ago

@Ryanf55 The Dev Containers extension automatically forwards DISPLAY. (It just doesn't seem to work the setup reported in this issue.)

Ryanf55 commented 5 months ago

@Ryanf55 The Dev Containers extension automatically forwards DISPLAY. (It just doesn't seem to work the setup reported in this issue.)

Got it. I'm happy to assist with any debug steps. Being able to have working X11 over SSH is significantly better than alternatives. Ubuntu 22's switch to wayland, without support for RDP login, makes running GUI prohibitively difficult. Support for this configuration (Windows host, Ubuntu 22 server) would be greatly appreciated.

don-patterson commented 2 months ago

I'm in a similar situation. Using just ssh, the display works fine: open-in-ssh

but with ssh+devcontainer, DISPLAY doesn't get set properly: open-in-ssh+devcontainer

I fixed it like @hccz95 suggested, and that works. I believe the issue is that the devcontainer takes the Unix socket DISPLAY from the ssh host machine, and doesn't notice that the ssh host machine is using a TCP socket for DISPLAY.

As a workaround, I believe I can script something like the netstat call to see which TCP socket is being used for DISPLAY and set it accordingly.