diff --git a/Dockerfile b/Dockerfile index ec98911..3f174d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/compose.yml b/compose.yml index dcac88c..f00042a 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ services: image: dockurr/macos container_name: macos environment: - VERSION: "ventura" + VERSION: "13" devices: - /dev/kvm cap_add: diff --git a/readme.md b/readme.md index ba6c349..68e168f 100644 --- a/readme.md +++ b/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?