2
0

devcontainer.json 429 B

123456789101112131415161718192021
  1. {
  2. "name": "Windows Server 2008 R2",
  3. "service": "windows",
  4. "containerEnv": {
  5. "VERSION": "2008",
  6. "RAM_SIZE": "max",
  7. "DISK_SIZE": "max",
  8. "CPU_CORES": "max"
  9. },
  10. "forwardPorts": [8006],
  11. "portsAttributes": {
  12. "8006": {
  13. "label": "Web",
  14. "onAutoForward": "openBrowser"
  15. }
  16. },
  17. "otherPortsAttributes": {
  18. "onAutoForward": "silent"
  19. },
  20. "dockerComposeFile": "../codespaces.yml"
  21. }