2
0

devcontainer.json 480 B

123456789101112131415161718192021222324
  1. {
  2. "name": "Windows Server 2019",
  3. "service": "windows",
  4. "containerEnv": {
  5. "VERSION": "2019",
  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. "hostRequirements": {
  21. "storage": "64gb"
  22. },
  23. "dockerComposeFile": "../codespaces.yml"
  24. }