2
0

devcontainer.json 337 B

123456789101112131415161718
  1. {
  2. "name": "Windows 11 Pro",
  3. "service": "windows",
  4. "containerEnv": {
  5. "VERSION": "11"
  6. },
  7. "forwardPorts": [8006],
  8. "portsAttributes": {
  9. "8006": {
  10. "label": "Web",
  11. "onAutoForward": "openBrowser"
  12. }
  13. },
  14. "otherPortsAttributes": {
  15. "onAutoForward": "silent"
  16. },
  17. "dockerComposeFile": "codespaces.yml"
  18. }