devcontainer.json 711 B

12345678910111213141516171819202122232425262728293031
  1. // For format details, see https://aka.ms/devcontainer.json
  2. {
  3. "name": "FreshRSS-dev-Alpine",
  4. "build": {
  5. "dockerfile": "Dockerfile"
  6. },
  7. "extensions": [
  8. "bmewburn.vscode-intelephense-client",
  9. "DavidAnson.vscode-markdownlint",
  10. "dbaeumer.vscode-eslint",
  11. "eamodio.gitlens",
  12. "EditorConfig.EditorConfig",
  13. "foxundermoon.shell-format",
  14. "mrmlnc.vscode-apache",
  15. "ms-azuretools.vscode-docker",
  16. "redhat.vscode-yaml",
  17. "timonwong.shellcheck",
  18. "ValeryanM.vscode-phpsab"
  19. ],
  20. "forwardPorts": [
  21. 8080
  22. ],
  23. "portsAttributes": {
  24. "8080": {
  25. "label": "FreshRSS Apache",
  26. "onAutoForward": "notify"
  27. }
  28. },
  29. "remoteUser": "developer",
  30. "postCreateCommand": "sudo .devcontainer/postCreateCommand.sh"
  31. }