Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0e606ba
guides: revamp taxonomy, flatten structure, collapse multi-page series
dvdksn Jun 11, 2026
bbf1106
guides: Phase 2 — Vercel KB landing page + clean content layout
dvdksn Jun 11, 2026
0ef54c9
guides: split cicd into languages + cicd, add labs group
dvdksn Jun 12, 2026
68c789c
guides: remove left sidebar on guide pages, center content, polish ch…
dvdksn Jun 12, 2026
b62926a
guides: add text filter to the landing page
dvdksn Jun 12, 2026
ade5c2c
guides: make collapsed guides single pages, recollapse refreshed nodejs
dvdksn Jun 12, 2026
9dfd49e
guides: remove templates orphaned by the revamp
dvdksn Jun 12, 2026
5958324
guides: fix CI failures from the revamp (markdownlint + htmltest)
dvdksn Jun 12, 2026
442821f
guides: simplify landing rows and make the topic nav filter
dvdksn Jun 15, 2026
d8bbb40
guides: fix landing load jank (section jump + nav flash)
dvdksn Jun 15, 2026
d257c83
guides: add a restrained Featured section to the landing page
dvdksn Jun 17, 2026
5593719
guides: drop the period from the landing page heading
dvdksn Jun 17, 2026
4285d1b
guides: curate the featured set (VEX, Node.js, OpenCode)
dvdksn Jun 17, 2026
e42a569
guides: simplify landing page chrome and card hover
dvdksn Jun 17, 2026
ee92ec5
guides: re-collapse language guides on top of main's CI/CD/deploy pru…
dvdksn Jun 30, 2026
eed5899
guides: drop per-section Summary/Next steps recaps from consolidated …
dvdksn Jun 30, 2026
8ef2446
guides: restore C++ scratch-image note dropped in recap prune
dvdksn Jun 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
39 changes: 38 additions & 1 deletion assets/css/utilities.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,33 @@
}
}
}
@utility scrollbar-hover {
/* Firefox: hide the thumb until hover */
scrollbar-width: thin;
scrollbar-color: transparent transparent;
&:hover {
scrollbar-color: var(--color-gray-400) transparent;
}
.dark &:hover {
scrollbar-color: var(--color-gray-600) transparent;
}
/* WebKit: reserve the track, reveal the thumb only on hover */
&::-webkit-scrollbar {
width: 8px;
height: 8px;
}
&::-webkit-scrollbar-thumb {
border-radius: 9999px;
background-color: transparent;
}
&:hover::-webkit-scrollbar-thumb {
background-color: var(--color-gray-400);
}
.dark &:hover::-webkit-scrollbar-thumb {
background-color: var(--color-gray-600);
}
}

@utility chip {
@apply border-divider-light dark:border-divider-dark inline-flex items-center gap-1 rounded-full border bg-gray-100 px-2 text-sm text-gray-800 select-none dark:bg-gray-700 dark:text-gray-200;
}
Expand All @@ -217,7 +244,17 @@
}

@utility breadcrumbs {
font-size: 90%;
/* Absolute size so breadcrumbs render identically inside and outside prose */
font-size: calc(var(--text-base) * 0.9);
}

/* Guides landing: collapse section spacing into a flat list while filtering.
Grouped spacing is the static default; this only applies once the page is
being filtered, so it never affects first paint (no layout jank). */
.guides-flat > section {
border-top-width: 0 !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
}

@utility topbar-button {
Expand Down
16 changes: 10 additions & 6 deletions content/guides/_index.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
---
title: Docker guides
linkTitle: Guides
description: Explore the Docker guides
description: Step-by-step tutorials, organized by what you're trying to do.
keywords: docker, guides, tutorials, learning paths, getting started
params:
icon: book-open
layout: landing
aliases:
- /guides/language/
- /language/
- /guides/dhi-from-doi/
- /guides/dhi-from-wolfi/
- /guides/dhi-go-example/
- /guides/dhi-nodejs-example/
- /guides/dhi-python-example/
- /guides/lab-docker-for-ai-redirect/
- /learning-paths/
---

Explore our collection of guides to learn how Docker can optimize your
development workflows and how to use it with specific languages, frameworks, or
technologies.
Explore guides to learn how Docker can optimize your development workflows and
how to use it with specific languages, frameworks, or technologies.

Can't find the guide you're looking for? Open an issue on the
[docker/docs](https://github.com/docker/docs/issues/new) repository to let us
know.
[docker/docs](https://github.com/docker/docs/issues/new) repository.
108 changes: 0 additions & 108 deletions content/guides/admin-set-up/_index.md

This file was deleted.

75 changes: 0 additions & 75 deletions content/guides/admin-set-up/comms-and-info-gathering.md

This file was deleted.

36 changes: 0 additions & 36 deletions content/guides/admin-set-up/deploy.md

This file was deleted.

77 changes: 0 additions & 77 deletions content/guides/admin-set-up/finalize-plans-and-setup.md

This file was deleted.

Loading
Loading