devcontainer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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-Commons-Dev",
  6. "dockerComposeFile": "docker-compose.yml",
  7. "service": "node",
  8. "workspaceFolder": "/workspace/growi-commons",
  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. "eamodio.gitlens",
  17. "editorconfig.editorconfig",
  18. "esbenp.prettier-vscode",
  19. ],
  20. // Uncomment the next line if you want start specific services in your Docker Compose config.
  21. // "runServices": [],
  22. // Uncomment the line below if you want to keep your containers running after VS Code shuts down.
  23. // "shutdownAction": "none",
  24. // Use 'postCreateCommand' to run commands after the container is created.
  25. // "postCreateCommand": "yarn install",
  26. // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
  27. "remoteUser": "node"
  28. }