mirror of
https://github.com/dockur/macos.git
synced 2026-03-11 08:34:24 +00:00
docs: Use numeric version values (#102)
This commit is contained in:
parent
5ddafa7568
commit
ee97b791e0
3 changed files with 9 additions and 9 deletions
|
|
@ -55,9 +55,9 @@ ADD --chmod=644 \
|
|||
EXPOSE 8006 5900
|
||||
VOLUME /storage
|
||||
|
||||
ENV VERSION="13"
|
||||
ENV RAM_SIZE="4G"
|
||||
ENV CPU_CORES="2"
|
||||
ENV DISK_SIZE="64G"
|
||||
ENV VERSION="ventura"
|
||||
|
||||
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ services:
|
|||
image: dockurr/macos
|
||||
container_name: macos
|
||||
environment:
|
||||
VERSION: "ventura"
|
||||
VERSION: "13"
|
||||
devices:
|
||||
- /dev/kvm
|
||||
cap_add:
|
||||
|
|
|
|||
14
readme.md
14
readme.md
|
|
@ -76,22 +76,22 @@ kubectl apply -f kubernetes.yml
|
|||
|
||||
### How do I select the macOS version?
|
||||
|
||||
By default, macOS Ventura will be installed. But you can add the `VERSION` environment variable to your compose file, in order to specify an alternative macOS version to be downloaded:
|
||||
By default, macOS 13 (Ventura) will be installed. But you can add the `VERSION` environment variable to your compose file, in order to specify an alternative macOS version to be downloaded:
|
||||
|
||||
```yaml
|
||||
environment:
|
||||
VERSION: "ventura"
|
||||
VERSION: "13"
|
||||
```
|
||||
|
||||
Select from the values below:
|
||||
|
||||
| **Value** | **Version** | **Name** |
|
||||
|-------------|----------------|------------------|
|
||||
| `sequoia` | macOS 15 | Sequoia |
|
||||
| `sonoma` | macOS 14 | Sonoma |
|
||||
| `ventura` | macOS 13 | Ventura |
|
||||
| `monterey` | macOS 12 | Monterey |
|
||||
| `big-sur` | macOS 11 | Big Sur |
|
||||
| `15` | macOS 15 | Sequoia |
|
||||
| `14` | macOS 14 | Sonoma |
|
||||
| `13` | macOS 13 | Ventura |
|
||||
| `12` | macOS 12 | Monterey |
|
||||
| `11` | macOS 11 | Big Sur |
|
||||
|
||||
### How do I change the storage location?
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue