Skip to content

Commit

Permalink
docs: Use numeric version values (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Oct 21, 2024
1 parent 5ddafa7 commit ee97b79
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
image: dockurr/macos
container_name: macos
environment:
VERSION: "ventura"
VERSION: "13"
devices:
- /dev/kvm
cap_add:
Expand Down
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down

0 comments on commit ee97b79

Please sign in to comment.