devcontainer.json 939 B

1234567891011121314151617181920212223242526272829303132333435
  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/app/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. "settings": {
  24. "terminal.integrated.defaultProfile.linux": "bash"
  25. }
  26. }
  27. }
  28. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  29. // "remoteUser": "root"
  30. }