Unverified Commit 3b110b1c authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Set default version to Ventura (#38)

parent e07aadf4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"]
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ services:
    image: dockurr/macos
    container_name: macos
    environment:
      VERSION: "sonoma"
      VERSION: "ventura"
    devices:
      - /dev/kvm
    cap_add:
+3 −3
Original line number Diff line number Diff line
@@ -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:
+1 −1
Original line number Diff line number Diff line
@@ -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"