mirror of
https://github.com/dockur/macos.git
synced 2026-03-11 08:34:24 +00:00
feat: Make macOS version selectable in Codespaces (#347)
This commit is contained in:
parent
e461eba7b3
commit
9a8afcf237
7 changed files with 122 additions and 2 deletions
24
.devcontainer/10/devcontainer.json
Normal file
24
.devcontainer/10/devcontainer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"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
.devcontainer/11/devcontainer.json
Normal file
24
.devcontainer/11/devcontainer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"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
.devcontainer/12/devcontainer.json
Normal file
24
.devcontainer/12/devcontainer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"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
.devcontainer/13/devcontainer.json
Normal file
24
.devcontainer/13/devcontainer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"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
.devcontainer/15/devcontainer.json
Normal file
24
.devcontainer/15/devcontainer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "macOS 14",
|
||||
"name": "macOS 14 (Sonoma)",
|
||||
"service": "macos",
|
||||
"containerEnv": {
|
||||
"VERSION": "14",
|
||||
|
|
@ -20,5 +20,5 @@
|
|||
"hostRequirements": {
|
||||
"storage": "64gb"
|
||||
},
|
||||
"dockerComposeFile": ".github/codespaces.yml"
|
||||
"dockerComposeFile": "codespaces.yml"
|
||||
}
|
||||
Loading…
Reference in a new issue