From 1f768e6deebf8176c656082fa2203213fdf87a63 Mon Sep 17 00:00:00 2001 From: Yu Hu <93544261+yuhuyoyo@users.noreply.github.com> Date: Thu, 12 Jun 2025 12:00:42 -0400 Subject: [PATCH] set workspace folder to /home/jupyter --- src/custom-workbench-jupyter-template/.devcontainer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/custom-workbench-jupyter-template/.devcontainer.json b/src/custom-workbench-jupyter-template/.devcontainer.json index 9ee1b3ef..2aa40c24 100644 --- a/src/custom-workbench-jupyter-template/.devcontainer.json +++ b/src/custom-workbench-jupyter-template/.devcontainer.json @@ -3,9 +3,9 @@ "dockerComposeFile": "docker-compose.yaml", "service": "app", "shutdownAction": "none", - "workspaceFolder": "/workspace", + "workspaceFolder": "/home/jupyter", "postCreateCommand": [ - "./startupscript/post-startup.sh", + "/workspace/startupscript/post-startup.sh", "jupyter", "/home/jupyter", "${templateOption:cloud}", @@ -13,7 +13,7 @@ ], // re-mount bucket files on container start up "postStartCommand": [ - "./startupscript/remount-on-restart.sh", + "/workspace/startupscript/remount-on-restart.sh", "jupyter", "/home/jupyter", "${templateOption:cloud}",