docs: Use numeric version values (#102)

This commit is contained in:
Kroese 2024-10-21 12:00:55 +02:00 committed by GitHub
parent 5ddafa7568
commit ee97b791e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 9 deletions

View file

@ -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"]

View file

@ -3,7 +3,7 @@ services:
image: dockurr/macos
container_name: macos
environment:
VERSION: "ventura"
VERSION: "13"
devices:
- /dev/kvm
cap_add:

View file

@ -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?