devcontainer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
  3. {
  4. "name": "GROWI-Dev",
  5. "dockerComposeFile": "../compose.yml",
  6. "service": "app",
  7. "workspaceFolder": "/workspace/growi",
  8. "features": {
  9. "ghcr.io/devcontainers/features/node:1": {
  10. "version": "20.18.0"
  11. }
  12. },
  13. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  14. // "forwardPorts": [],
  15. // Use 'postCreateCommand' to run commands after the container is created.
  16. "postCreateCommand": "/bin/bash ./.devcontainer/postCreateCommand.sh",
  17. // Configure tool-specific properties.
  18. "customizations": {
  19. "vscode": {
  20. "extensions": [
  21. "dbaeumer.vscode-eslint",
  22. "mhutchie.git-graph",
  23. "eamodio.gitlens",
  24. "github.vscode-pull-request-github",
  25. "cschleiden.vscode-github-actions",
  26. "cweijan.vscode-database-client2",
  27. "mongodb.mongodb-vscode",
  28. "msjsdiag.debugger-for-chrome",
  29. "firefox-devtools.vscode-firefox-debug",
  30. "editorconfig.editorconfig",
  31. "shinnn.stylelint",
  32. "stylelint.vscode-stylelint",
  33. "vitest.explorer",
  34. "ms-playwright.playwright"
  35. ],
  36. }
  37. },
  38. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  39. // "remoteUser": "root"
  40. }