mirror of https://github.com/docker/docs.git
58 lines
1.6 KiB
HTML
58 lines
1.6 KiB
HTML
{{ define "left" }}
|
|
{{ partial "sidebar/mainnav.html" . }}
|
|
{{ partial "sidebar/sections.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ partial "breadcrumbs.html" . }}
|
|
<article class="prose max-w-none dark:prose-invert">
|
|
{{ with .Title }}
|
|
<h1 class="scroll-mt-36">{{ . }}</h1>
|
|
{{ end }}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range site.Data.samples.samples }}
|
|
{{ if in .services $.Params.service }}
|
|
<tr>
|
|
<td>{{ printf "[%s](%s)" .title .url | markdownify }}</td>
|
|
<td>{{ .description }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
|
|
<h2>Looking for more samples?</h2>
|
|
|
|
<p>Visit the following GitHub repositories for more Docker samples.</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<p>
|
|
{{ markdownify "[Awesome Compose](https://github.com/docker/awesome-compose)" }}:
|
|
A curated repository containing over 30 Docker Compose samples. These
|
|
samples offer a starting point for how to integrate different services
|
|
using a Compose file.
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
{{ markdownify "[Docker Samples](https://github.com/dockersamples?q=&type=all&language=&sort=stargazers)" }}:
|
|
A collection of over 30 repositories that offer sample containerized
|
|
demo applications, tutorials, and labs.
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "right" }}
|
|
{{ partial "aside.html" . }}
|
|
{{ end }}
|