fix: Set default version to Ventura (#38)

This commit is contained in:
Kroese 2024-06-11 02:58:10 +02:00 committed by GitHub
parent e07aadf4e1
commit 3b110b1ca1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -62,6 +62,6 @@ VOLUME /storage
ENV RAM_SIZE "4G"
ENV CPU_CORES "2"
ENV DISK_SIZE "64G"
ENV VERSION "sonoma"
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: "sonoma"
VERSION: "ventura"
devices:
- /dev/kvm
cap_add:

View file

@ -29,7 +29,7 @@ services:
image: dockurr/macos
container_name: macos
environment:
VERSION: "sonoma"
VERSION: "ventura"
devices:
- /dev/kvm
cap_add:
@ -75,11 +75,11 @@ kubectl apply -f kubernetes.yml
* ### How do I select the macOS version?
By default, macOS Sonoma 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 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: "sonoma"
VERSION: "ventura"
```
Select from the values below:

View file

@ -2,7 +2,7 @@
set -Eeuo pipefail
# Docker environment variables
: "${VERSION:="sonoma"}" # OSX Version
: "${VERSION:="ventura"}" # OSX Version
TMP="$STORAGE/tmp"
BASE_IMG_ID="InstallMedia"