devcontainer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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", "../compose.extend.yml"],
  6. "service": "app",
  7. "workspaceFolder": "/workspace/growi",
  8. "features": {
  9. "ghcr.io/devcontainers/features/node:1": {
  10. "version": "20.18.3"
  11. }
  12. },
  13. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  14. // "forwardPorts": [],
  15. "initializeCommand": "/bin/bash .devcontainer/pdf-converter/initializeCommand.sh",
  16. // Use 'postCreateCommand' to run commands after the container is created.
  17. "postCreateCommand": "/bin/bash ./.devcontainer/app/postCreateCommand.sh",
  18. // Configure tool-specific properties.
  19. "customizations": {
  20. "vscode": {
  21. "extensions": [
  22. "dbaeumer.vscode-eslint",
  23. "biomejs.biome",
  24. "mhutchie.git-graph",
  25. "eamodio.gitlens",
  26. "github.vscode-pull-request-github",
  27. "cschleiden.vscode-github-actions",
  28. "cweijan.vscode-database-client2",
  29. "mongodb.mongodb-vscode",
  30. "msjsdiag.debugger-for-chrome",
  31. "firefox-devtools.vscode-firefox-debug",
  32. "editorconfig.editorconfig",
  33. "shinnn.stylelint",
  34. "stylelint.vscode-stylelint",
  35. "vitest.explorer",
  36. "ms-playwright.playwright"
  37. ],
  38. "settings": {
  39. "terminal.integrated.defaultProfile.linux": "bash"
  40. }
  41. },
  42. },
  43. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  44. // "remoteUser": "root"
  45. }