devcontainer.json 323 B

123456789101112131415
  1. {
  2. // Sets the run context to one level up instead of the .devcontainer folder.
  3. "context": "..",
  4. "workspaceFolder": "/opt",
  5. "dockerFile": "..\\Dockerfile",
  6. // Set *default* container specific settings.json values on container create.
  7. "settings": {
  8. "terminal.integrated.shell.linux": null
  9. },
  10. "extensions": []
  11. }