| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {{- /*
- This template defines the "Supported tags and Dockerfile links" portion of an image description.
- */ -}}
- {{- define "dockerfilePath" -}}
- {{- if ne .Directory "." -}}
- {{- .Directory -}}
- /
- {{- end -}}
- Dockerfile
- {{- end -}}
- {{- range $i, $e := $.Entries -}}
- {{- /* force bashbrew to "fetch" the GitCommit so that it is fully resolved */ -}}
- {{- $from := $.DockerFrom $e -}}
- {{- $repoUrlBase := $e.GitRepo | replace "git://" "https://" | trimSuffixes ".git" -}}
- {{- $isGitHub := hasPrefix "https://github.com/" $repoUrlBase -}}
- {{- if $i -}}
- {{- "\n" -}}
- {{- end -}}
- - {{- "\t" -}}
- {{- if $isGitHub -}} [ {{- end -}}
- ` {{- $e.Tags | join "`, `" -}} ` (* {{- template "dockerfilePath" $e -}} *)
- {{- if $isGitHub -}} ]( {{- $repoUrlBase -}} /blob/ {{- $e.GitCommit -}} / {{- template "dockerfilePath" $e -}} ) {{- end -}}
- {{- /* TODO decide what to do (if anything) about non-GitHub repos with respect to URL */ -}}
- {{- end -}}
- {{- "\n\n" -}}
- [.Tags | first)) -}}
- {{- ".svg" -}}
- )](
- {{- "https://imagelayers.io/?images=" -}}
- {{- /* list all "repo:tag" combinations, comma separated */ -}}
- {{- range $i, $e := $.Entries -}}
- {{- if $i -}} , {{- end -}}
- {{- printf "%s:%s" $.RepoName ($e.Tags | first) -}}
- {{- end -}}
- )
- {{- "\n\n" -}}
|