Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Version alias #212

Merged
merged 4 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ ADD --chmod=664 https://github.com/qemus/virtiso-arm/releases/download/v0.1.262-
EXPOSE 8006 3389
VOLUME /storage

ENV VERSION="11"
ENV RAM_SIZE="4G"
ENV CPU_CORES="2"
ENV DISK_SIZE="64G"
ENV VERSION="win11"

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:
container_name: windows
image: dockurr/windows-arm
environment:
VERSION: "win11"
VERSION: "11"
devices:
- /dev/kvm
cap_add:
Expand Down
4 changes: 3 additions & 1 deletion kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ spec:
securityContext:
privileged: true
env:
- name: VERSION
value: "11"
- name: RAM_SIZE
value: 4G
value: "4G"
- name: CPU_CORES
value: "2"
- name: DISK_SIZE
Expand Down
16 changes: 8 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
container_name: windows
image: dockurr/windows-arm
environment:
VERSION: "win11"
VERSION: "11"
devices:
- /dev/kvm
cap_add:
Expand Down Expand Up @@ -80,20 +80,20 @@ kubectl apply -f kubernetes.yml

```yaml
environment:
VERSION: "win11"
VERSION: "11"
```

Select from the values below:

| **Value** | **Version** | **Platform** | **Size** |
|---|---|---|---|
| `win11` | Windows 11 Pro | ARM64 | 4.9 GB |
| `ltsc11` | Windows 11 LTSC | ARM64 | 4.8 GB |
| `win11e` | Windows 11 Enterprise | ARM64 | 4.8 GB |
| `11` | Windows 11 Pro | ARM64 | 4.9 GB |
| `11l` | Windows 11 LTSC | ARM64 | 4.8 GB |
| `11e` | Windows 11 Enterprise | ARM64 | 4.8 GB |
|||||
| `win10` | Windows 10 Pro | ARM64 | 3.5 GB |
| `ltsc10` | Windows 10 LTSC | ARM64 | 4.1 GB |
| `win10e` | Windows 10 Enterprise | ARM64 | 3.4 GB |
| `10` | Windows 10 Pro | ARM64 | 3.5 GB |
| `10l` | Windows 10 LTSC | ARM64 | 4.1 GB |
| `10e` | Windows 10 Enterprise | ARM64 | 3.4 GB |

> [!TIP]
> To install x64 versions of Windows, use [dockur/windows](https://github.com/dockur/windows/).
Expand Down