diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cd46bcb2980..059d434d65a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,9 @@ { - "name": "eclipse-s-core", - "image": "ghcr.io/eclipse-score/devcontainer:v1.3.0", - "postCreateCommand": "bash .devcontainer/prepare_workspace.sh", - "postStartCommand": "ssh-keygen -f '/home/vscode/.ssh/known_hosts' -R '[localhost]:2222' || true" + "name": "eclipse-s-core", + "image": "ghcr.io/eclipse-score/devcontainer:v1.3.0", + "mounts": [ + "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" + ], + "postCreateCommand": "bash .devcontainer/prepare_workspace.sh", + "postStartCommand": "ssh-keygen -f '/home/vscode/.ssh/known_hosts' -R '[localhost]:2222' || true" }