mirror of
https://github.com/dockur/macos.git
synced 2026-03-11 08:34:24 +00:00
fix: Set default version to Ventura (#38)
This commit is contained in:
parent
e07aadf4e1
commit
3b110b1ca1
4 changed files with 6 additions and 6 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ services:
|
|||
image: dockurr/macos
|
||||
container_name: macos
|
||||
environment:
|
||||
VERSION: "sonoma"
|
||||
VERSION: "ventura"
|
||||
devices:
|
||||
- /dev/kvm
|
||||
cap_add:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue