Unverified Commit 9a8afcf2 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

feat: Make macOS version selectable in Codespaces (#347)

parent e461eba7
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
{
  "name": "macOS 10 (Catalina)",
  "service": "macos",
  "containerEnv": {
    "VERSION": "10",
    "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": "macOS 11 (Big Sur)",
  "service": "macos",
  "containerEnv": {
    "VERSION": "11",
    "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": "macOS 12 (Monterey)",
  "service": "macos",
  "containerEnv": {
    "VERSION": "12",
    "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": "macOS 13 (Ventura)",
  "service": "macos",
  "containerEnv": {
    "VERSION": "13",
    "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": "macOS 15 (Sequoia)",
  "service": "macos",
  "containerEnv": {
    "VERSION": "15",
    "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