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

docs: Use numeric version values (#102)

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