A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
at main 15 lines 659 B view raw
1{{ define "docker-command" }} 2{{/* 3 Docker command component - displays a docker command with icon and copy button 4 5 Expects: string - the docker command to display 6 Usage: {{ template "docker-command" "docker pull atcr.io/alice/myapp:latest" }} 7*/}} 8<div class="cmd group"> 9 {{ icon "terminal" "size-4 shrink-0 text-base-content/60" }} 10 <code>{{ . }}</code> 11 <button class="btn btn-ghost btn-xs absolute right-2 top-1/2 -translate-y-1/2 sm:opacity-0 sm:group-hover:opacity-100 focus:opacity-100 transition-opacity" data-cmd="{{ . }}" aria-label="Copy command to clipboard"> 12 {{ icon "copy" "size-4" }} 13 </button> 14</div> 15{{ end }}