Unverified Commit 42a149d7 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

feat: Make Windows version selectable in Codespaces (#1489)

parent 0b0de7de
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
{
  "name": "Windows 11 Pro",
  "name": "Windows 10 Pro",
  "service": "windows",
  "containerEnv": {
    "VERSION": "11",
    "VERSION": "10",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
@@ -20,5 +20,5 @@
  "hostRequirements": {
    "storage": "64gb"
  },  
  "dockerComposeFile": ".github/codespaces.yml"
  "dockerComposeFile": "../codespaces.yml"
}
+24 −0
Original line number Diff line number Diff line
{
  "name": "Windows 10 Enterprise",
  "service": "windows",
  "containerEnv": {
    "VERSION": "10e",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "hostRequirements": {
    "storage": "64gb"
  },  
  "dockerComposeFile": "../codespaces.yml"
}
+24 −0
Original line number Diff line number Diff line
{
  "name": "Windows 10 LTSC",
  "service": "windows",
  "containerEnv": {
    "VERSION": "10l",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "hostRequirements": {
    "storage": "64gb"
  },  
  "dockerComposeFile": "../codespaces.yml"
}
+24 −0
Original line number Diff line number Diff line
{
  "name": "Windows 11 Enterprise",
  "service": "windows",
  "containerEnv": {
    "VERSION": "11e",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "hostRequirements": {
    "storage": "64gb"
  },  
  "dockerComposeFile": "../codespaces.yml"
}
+24 −0
Original line number Diff line number Diff line
{
  "name": "Windows 11 LTSC",
  "service": "windows",
  "containerEnv": {
    "VERSION": "11l",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "hostRequirements": {
    "storage": "64gb"
  },  
  "dockerComposeFile": "../codespaces.yml"
}
Loading