devcontainer.json 861 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "GROWI-PDF-Converter",
  3. "dockerComposeFile": "../compose.yml",
  4. "service": "pdf-converter",
  5. "workspaceFolder": "/workspace/growi",
  6. "features": {
  7. "ghcr.io/devcontainers/features/node:1": {
  8. "version": "20.18.0"
  9. }
  10. },
  11. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  12. // "forwardPorts": [],
  13. // Use 'postCreateCommand' to run commands after the container is created.
  14. "postCreateCommand": "/bin/bash ./.devcontainer/pdf-converter/postCreateCommand.sh",
  15. // Configure tool-specific properties.
  16. "customizations": {
  17. "vscode": {
  18. "extensions": [
  19. "dbaeumer.vscode-eslint",
  20. "mhutchie.git-graph",
  21. "eamodio.gitlens"
  22. ]
  23. }
  24. }
  25. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  26. // "remoteUser": "root"
  27. }