witherzuo

devcontainer-jsonconfig-0

Nov 21st, 2025
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.69 KB | None | 0 0
  1. {
  2.     "name": "MagicZone",
  3.     "build": {
  4.         "dockerfile": "Containerfile",
  5.         "context": "."
  6.     },
  7.     "customizations": {
  8.         "vscode": {
  9.             "settings": {
  10.                 "files.associations": {
  11.                     "wrangler.json": "jsonc"
  12.                 }
  13.             }
  14.         }
  15.     },
  16.     "mounts": [
  17.         {
  18.             "source": "${localWorkspaceFolderBasename}-node-modules",
  19.             "target": "${containerWorkspaceFolder}/node_modules",
  20.             "type": "volume"
  21.         }
  22.     ],
  23.     "forwardPorts": [
  24.         3000,
  25.         8787
  26.     ],
  27.     "updateContentCommand": "pnpm install",
  28.     "containerUser": "node",
  29.     "remoteUser": "node"
  30. }
Advertisement
Add Comment
Please, Sign In to add comment