mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
- layouts/partials/ → layouts/_partials/ - layouts/shortcodes/ → layouts/_shortcodes/ - layouts/_default/_markup/ → layouts/_markup/ - layouts/_default/*.html → layouts/*.html (flatten _default/) - layouts/index.html → layouts/home.html - layouts/index.*.json/txt → layouts/home.*.json/txt - layouts/_default/index.llms.txt → layouts/home.llms.txt - layouts/tag/ → layouts/tags/ (match /tags/ URL path)
48 lines
2.1 KiB
HTML
48 lines
2.1 KiB
HTML
{{- $all := .Get "all" -}}
|
|
{{- $win := .Get "win" -}}
|
|
{{- $win_arm_release := .Get "win_arm_release" -}}
|
|
{{- $mac := .Get "mac" -}}
|
|
{{- $linux := .Get "linux" -}}
|
|
{{- $version := .Get "version" -}}
|
|
{{- $build_path := .Get "build_path" -}}
|
|
<blockquote {{ if eq $build_path "/" }} class="tip" {{ end }}>
|
|
<p>Download Docker Desktop</p>
|
|
<p>
|
|
{{- if or $all $win }}
|
|
<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>) |
|
|
{{ end }}
|
|
{{- if or $win_arm_release }}
|
|
<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>) |
|
|
{{ end }}
|
|
{{- if or $all $mac }}
|
|
<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>) |
|
|
<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>)
|
|
{{ end -}}
|
|
{{- if or $all $linux }}
|
|
|
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}docker-desktop-{{ $version }}-amd64.deb">Debian</a>
|
|
-
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}docker-desktop-{{ $version }}-x86_64.rpm">RPM</a>
|
|
-
|
|
<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}docker-desktop-{{ $version }}-x86_64.pkg.tar.zst">Arch</a>
|
|
(<a rel="noopener"
|
|
href="https://desktop.docker.com/linux/main/amd64{{ $build_path }}checksums.txt">checksum</a>)
|
|
{{- end -}}
|
|
</p>
|
|
</blockquote>
|