devcontainer.json 847 B

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