devcontainer.json 448 B

1234567891011121314151617181920
  1. {
  2. "name": "Windows Vista Ultimate",
  3. "service": "windows",
  4. "containerEnv": {
  5. "VERSION": "vu"
  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. "workspaceFolder": "/workspaces/windows",
  19. "initializeCommand": "docker system prune --all --force"
  20. }