devcontainer.json 950 B

123456789101112131415161718192021222324252627282930
  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. "biomejs.biome",
  16. "mhutchie.git-graph",
  17. "eamodio.gitlens"
  18. ],
  19. "settings": {
  20. "terminal.integrated.defaultProfile.linux": "bash"
  21. }
  22. }
  23. }
  24. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  25. // "remoteUser": "root"
  26. }