mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
<!--Delete sections as needed --> ## Description <!-- Tell us what you did and why --> Updates Windows ARM builds to Early Access ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Chaimaa ZEGOUMOU <chaimaa.zegoumou@docker.com>
54 lines
2.2 KiB
HTML
54 lines
2.2 KiB
HTML
{{- $all := .Get "all" -}}
|
|
{{- $win := .Get "win" -}}
|
|
{{- $win_arm_release := .Get "win_arm_release" -}}
|
|
{{- $mac := .Get "mac" -}}
|
|
{{- $linux := .Get "linux" -}}
|
|
{{- $build_path := .Get "build_path" -}}
|
|
<blockquote {{ if eq $build_path "/" }} class="tip" {{ end }} class="not-prose download-links">
|
|
<p>Download Docker Desktop:</p>
|
|
<div class="download-links-subcontainer">
|
|
{{- if or $all $win }}
|
|
<div>
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/win/main/amd64{{ $build_path }}Docker%20Desktop%20Installer.exe">Windows</a>
|
|
(<a rel="noopener"
|
|
href="https://desktop.docker.com/win/main/amd64{{ $build_path }}checksums.txt">checksum</a>)
|
|
</div>
|
|
{{ end }}
|
|
{{- if or $win_arm_release }}
|
|
<div>
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/win/main/arm64{{ $build_path }}Docker%20Desktop%20Installer.exe">Windows ARM {{ $win_arm_release }}</a>
|
|
(<a rel="noopener"
|
|
href="https://desktop.docker.com/win/main/arm64{{ $build_path }}checksums.txt">checksum</a>)
|
|
</div>
|
|
{{ end }}
|
|
{{- if or $all $mac }}
|
|
<div>
|
|
<a rel="noopener" href="https://desktop.docker.com/mac/main/arm64{{ $build_path }}Docker.dmg">Mac with Apple chip</a>
|
|
(<a rel="noopener"
|
|
href="https://desktop.docker.com/mac/main/arm64{{ $build_path }}checksums.txt">checksum</a>)
|
|
</div>
|
|
<div>
|
|
<a rel="noopener" href="https://desktop.docker.com/mac/main/amd64{{ $build_path }}Docker.dmg">Mac with Intel chip</a>
|
|
(<a rel="noopener"
|
|
href="https://desktop.docker.com/mac/main/amd64{{ $build_path }}checksums.txt">checksum</a>)
|
|
</div>
|
|
{{ end -}}
|
|
{{- if or $all $linux }}
|
|
<div>
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}docker-desktop-amd64.deb">Debian</a>
|
|
-
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}docker-desktop-x86_64.rpm">RPM</a>
|
|
-
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}docker-desktop-x86_64.pkg.tar.zst">Arch</a>
|
|
(<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}checksums.txt">checksum</a>)
|
|
</div>
|
|
{{- end -}}
|
|
</div>
|
|
</blockquote>
|