Skip to content

Commit 286017c

Browse files
nav: add groupings for manual
Signed-off-by: Craig <[email protected]>
1 parent e6bfca7 commit 286017c

File tree

23 files changed

+106
-38
lines changed

23 files changed

+106
-38
lines changed

assets/css/toc.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@
1111
}
1212
}
1313
}
14+
.group-header {
15+
@apply text-gray-light-500 dark:text-gray-dark-700;
16+
}
1417
}

content/manuals/_index.md

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,11 @@ layout: wide
88
params:
99
icon: description
1010
notoc: true
11-
development:
11+
products:
1212
- title: Docker Desktop
1313
description: Your command center for container development.
1414
icon: /assets/icons/Whale.svg
1515
link: /desktop/
16-
- title: Docker Compose
17-
description: Define and run multi-container applications.
18-
icon: /assets/icons/Compose.svg
19-
link: /compose/
20-
- title: Docker Build
21-
description: Build and ship any application anywhere.
22-
icon: build
23-
link: /build/
24-
- title: Docker Engine
25-
description: The industry-leading container runtime.
26-
icon: developer_board
27-
link: /engine/
28-
- title: Docker Extensions
29-
description: Customize your Docker Desktop workflow.
30-
icon: extension
31-
link: /extensions/
32-
services:
3316
- title: Docker Hub
3417
description: Discover, share, and integrate container images.
3518
icon: hub
@@ -38,14 +21,31 @@ params:
3821
description: Image analysis and policy evaluation.
3922
icon: /assets/icons/Scout.svg
4023
link: /scout/
41-
- title: Trusted content
42-
description: Curated, high-quality content from trusted sources.
43-
icon: verified
44-
link: /trusted-content/
4524
- title: Build Cloud
4625
description: Build your images faster in the cloud.
4726
icon: /assets/images/logo-build-cloud.svg
4827
link: /build-cloud/
28+
- title: Testcontainers Cloud
29+
description: Automate container-based testing with enhanced performance and scalability.
30+
icon: rule
31+
link: https://testcontainers.com/cloud/docs/
32+
tools:
33+
- title: Docker Compose
34+
description: Define and run multi-container applications.
35+
icon: /assets/icons/Compose.svg
36+
link: /compose/
37+
- title: Docker Build
38+
description: Build and ship any application anywhere.
39+
icon: build
40+
link: /build/
41+
- title: Docker Engine
42+
description: The industry-leading container runtime.
43+
icon: developer_board
44+
link: /engine/
45+
- title: Registry
46+
description: Store and distribute container images.
47+
icon: storage
48+
link: /registry/
4949
admin:
5050
- title: Administration
5151
description: Centralized observability for companies and organizations.
@@ -68,20 +68,24 @@ params:
6868
This section contains user guides on how to install, set up, configure, and use
6969
Docker products.
7070

71-
## Developer tools
71+
## Products
7272

73-
Software development and containerization technologies.
73+
Explore Docker's flagship products, including tools for container development,
74+
image sharing, security analysis, and accelerated builds.
7475

75-
{{< grid items=development >}}
76+
{{< grid items=products >}}
7677

77-
## Services
78+
## Open source tools
7879

79-
Artifact management and supply chain security.
80+
Discover how to leverage Docker’s open-source tools for orchestrating
81+
multi-container applications, building images, running containers, and managing
82+
container registries.
8083

81-
{{< grid items=services >}}
84+
{{< grid items=tools >}}
8285

83-
## Administration and accounts
86+
## Platform
8487

85-
Administration and subscription management for organizations.
88+
Find resources for managing Docker organizations, accounts, subscriptions,
89+
billing, and security.
8690

8791
{{< grid items=admin >}}

content/manuals/accounts/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ grid:
2424
description: Add an extra layer of authentication to your Docker account.
2525
link: /security/for-developers/2fa/
2626
icon: phonelink_lock
27+
group: "Platform"
2728
---
2829

2930
You can create a Docker account to secure a Docker ID, which is a username for your account that lets you access Docker products. You can use your Docker account to sign in to Docker products like Docker Hub, Docker Desktop, or Docker Scout. You can centrally manage your [Docker account settings](https://app.docker.com/settings), as well as account security features, in [Docker Home](https://app.docker.com).

content/manuals/admin/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ grid:
3030
link: /security/
3131
aliases:
3232
- /docker-hub/admin-overview
33+
group: "Platform"
3334
---
3435

3536
Administrators can manage companies and organizations using the Docker Admin Console, or manage organizations in Docker Hub.

content/manuals/billing/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ grid_resources:
4343
description: Discover how Docker billing supports 3DS and how to troubleshoot potential issues.
4444
link: /billing/3d-secure/
4545
icon: wallet
46+
group: "Platform"
4647
---
4748

4849
Use the resources in this section to manage your billing and payment settings for your Docker subscriptions.

content/manuals/build-cloud/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
title: Docker Build Cloud
3-
weight: 100
3+
weight: 10
44
description: Find documentation on Docker Build Cloud to help you build your container images faster, both locally and in CI
55
keywords: build, cloud, cloud build, remote builder
66
aliases:
77
- /build/cloud/faq/
88
- /build/cloud/
9+
group: "Products"
910
---
1011

1112
Docker Build Cloud is a service that lets you build your container images

content/manuals/build/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ grid:
4242
aliases:
4343
- /buildx/working-with-buildx/
4444
- /develop/develop-images/build_enhancements/
45+
group: "Open source tools"
4546
---
4647

4748
Docker Build is one of Docker Engine's most used features. Whenever you are

content/manuals/cloud/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ aliases:
1212
- /cloud/aci-compose-features/
1313
- /cloud/aci-container-features/
1414
- /engine/context/ecs-integration/
15+
group: "Move?"
1516
---
1617

1718
Docker Compose's integration for Amazon's Elastic Container Service and Azure Container Instances has retired. The integration documentation is no longer available through the Docker Docs site.

content/manuals/compose/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ aliases:
4747
- /compose/overview/
4848
- /compose/swarm/
4949
- /compose/completion/
50+
group: "Open source tools"
5051
---
5152

5253
Docker Compose is a tool for defining and running multi-container applications.

content/manuals/copilot/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ description: |
1212
vulnerabilities, and automate containerization through GitHub Copilot Chat in
1313
various development environments.
1414
keywords: Docker, GitHub Copilot, extension, Visual Studio Code, chat, ai, containerization
15+
group: "Products"
1516
---
1617

1718
{{% restricted title="Early Access" %}}

0 commit comments

Comments
 (0)