Skip to content

Commit

Permalink
docs: Use multi-platform image (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Nov 13, 2024
1 parent cdae8a8 commit 0435a59
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
windows:
image: dockurr/windows
container_name: windows
image: dockurr/windows-arm
environment:
VERSION: "11"
devices:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
terminationGracePeriodSeconds: 120 # the Kubernetes default is 30 seconds and it may be not enough
containers:
- name: windows
image: dockurr/windows-arm
image: dockurr/windows
ports:
- containerPort: 8006
protocol: TCP
Expand Down
18 changes: 9 additions & 9 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Via Docker Compose:
```yaml
services:
windows:
image: dockurr/windows
container_name: windows
image: dockurr/windows-arm
environment:
VERSION: "11"
devices:
Expand All @@ -49,7 +49,7 @@ services:
Via Docker CLI:
```bash
docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-timeout 120 dockurr/windows-arm
docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-timeout 120 dockurr/windows
```

Via Kubernetes:
Expand Down Expand Up @@ -129,7 +129,7 @@ kubectl apply -f https://raw.githubusercontent.com/dockur/windows-arm/refs/heads

### How do I increase the display resolution?

The display output is a simple framebuffer, so that the screen can be visible during installation as it doesn't require any drivers.
The display output is a simple framebuffer, just so that the screen can be visible during installation as it doesn't require any drivers.

After Windows is fully installed, you can add the following to your compose file:

Expand Down Expand Up @@ -381,12 +381,12 @@ The example folder `/home/user/example` will be available as ` \\host.lan\Data`.
*The product names, logos, brands, and other trademarks referred to within this project are the property of their respective trademark holders. This project is not affiliated, sponsored, or endorsed by Microsoft Corporation.*

[build_url]: https://github.com/dockur/windows-arm/
[hub_url]: https://hub.docker.com/r/dockurr/windows-arm/
[tag_url]: https://hub.docker.com/r/dockurr/windows-arm/tags
[pkg_url]: https://github.com/dockur/windows-arm/pkgs/container/windows-arm
[hub_url]: https://hub.docker.com/r/dockurr/windows/
[tag_url]: https://hub.docker.com/r/dockurr/windows/tags
[pkg_url]: https://github.com/dockur/windows/pkgs/container/windows

[Build]: https://github.com/dockur/windows-arm/actions/workflows/build.yml/badge.svg
[Size]: https://img.shields.io/docker/image-size/dockurr/windows-arm/latest?color=066da5&label=size
[Pulls]: https://img.shields.io/docker/pulls/dockurr/windows-arm.svg?style=flat&label=pulls&logo=docker
[Version]: https://img.shields.io/docker/v/dockurr/windows-arm/latest?arch=arm64&sort=semver&color=066da5
[Package]: https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fipitio.github.io%2Fbackage%2Fdockur%2Fwindows-arm%2Fwindows-arm.json&query=%24.downloads&logo=github&style=flat&color=066da5&label=pulls
[Pulls]: https://img.shields.io/docker/pulls/dockurr/windows.svg?style=flat&label=pulls&logo=docker
[Version]: https://img.shields.io/docker/v/dockurr/windows/latest?arch=arm64&sort=semver&color=066da5
[Package]: https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fipitio.github.io%2Fbackage%2Fdockur%2Fwindows%2Fwindows.json&query=%24.downloads&logo=github&style=flat&color=066da5&label=pulls

0 comments on commit 0435a59

Please sign in to comment.