devcontainer.json 403 B

12345678910111213141516171819
  1. {
  2. "name": "Windows Server 2025",
  3. "service": "windows",
  4. "containerEnv": {
  5. "VERSION": "2025"
  6. },
  7. "forwardPorts": [8006],
  8. "portsAttributes": {
  9. "8006": {
  10. "label": "Web",
  11. "onAutoForward": "notify"
  12. }
  13. },
  14. "otherPortsAttributes": {
  15. "onAutoForward": "ignore"
  16. },
  17. "dockerComposeFile": "../codespaces.yml",
  18. "initializeCommand": "docker system prune --all --force"
  19. }