devcontainer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
  2. // https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/javascript-node-12-mongo
  3. // If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
  4. {
  5. "name": "GROWI-Dev",
  6. "dockerComposeFile": "docker-compose.yml",
  7. "service": "node",
  8. "workspaceFolder": "/workspace",
  9. // Set *default* container specific settings.json values on container create.
  10. "settings": {
  11. "terminal.integrated.shell.linux": "/bin/bash"
  12. },
  13. // Add the IDs of extensions you want installed when the container is created.
  14. "extensions": [
  15. "dbaeumer.vscode-eslint",
  16. "msjsdiag.debugger-for-chrome",
  17. "firefox-devtools.vscode-firefox-debug",
  18. "editorconfig.editorconfig",
  19. "esbenp.prettier-vscode",
  20. "shinnn.stylelint",
  21. "hex-ci.stylelint-plus",
  22. ],
  23. // Uncomment the next line if you want start specific services in your Docker Compose config.
  24. // "runServices": [],
  25. // Uncomment the line below if you want to keep your containers running after VS Code shuts down.
  26. // "shutdownAction": "none",
  27. // Use 'postCreateCommand' to run commands after the container is created.
  28. // "postCreateCommand": "yarn install",
  29. // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
  30. "remoteUser": "node"
  31. }