devcontainer.json 984 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "GROWI-PDF-Converter",
  3. "dockerComposeFile": ["../compose.yml", "../compose.extend.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. "initializeCommand": "/bin/bash .devcontainer/pdf-converter/initializeCommand.sh",
  9. // Use 'postCreateCommand' to run commands after the container is created.
  10. "postCreateCommand": "/bin/bash ./.devcontainer/pdf-converter/postCreateCommand.sh",
  11. // Configure tool-specific properties.
  12. "customizations": {
  13. "vscode": {
  14. "extensions": [
  15. "dbaeumer.vscode-eslint",
  16. "biomejs.biome",
  17. "mhutchie.git-graph",
  18. "eamodio.gitlens"
  19. ],
  20. "settings": {
  21. "terminal.integrated.defaultProfile.linux": "bash"
  22. }
  23. }
  24. }
  25. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  26. // "remoteUser": "root"
  27. }