devcontainer.json 1.0 KB

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