From 70f29882e43aa601f32041e373521dd88c1492ec Mon Sep 17 00:00:00 2001 From: patlecat Date: Sun, 22 Dec 2024 20:29:21 +0100 Subject: [PATCH] Update devcontainer.json need root user rights --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5fb3d2b..ff04258 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -39,11 +39,11 @@ // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "sudo bash ./.devcontainer/startup_script.sh" + "postCreateCommand": "sudo bash ./.devcontainer/startup_script.sh", // Configure tool-specific properties. // "customizations": {}, // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" + "remoteUser": "root" }