Update dev container workspace path and mounting configuration

Moves the workspace volume mount from the docker-compose file to devcontainer.json and standardizes the workspace path to /workspace.
This commit is contained in:
Hussar
2026-04-12 18:20:49 +01:00
parent 9213df4828
commit f239088cd0
2 changed files with 2 additions and 3 deletions

View File

@@ -5,7 +5,8 @@
"docker-compose.devcontainer.yml"
],
"service": "workspace",
"workspaceFolder": "/workspaces/fog",
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"runServices": ["workspace", "postgres", "redis"],
"shutdownAction": "stopCompose",
"remoteUser": "node",