devcontainer.json 759 B

1234567891011121314151617181920212223242526
  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. }
  19. }
  20. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  21. // "remoteUser": "root"
  22. }