Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion content/manuals/dhi/features/patching.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,15 @@ Docker Hardened Images are automatically rebuilt and tested.
Updated images are published with cryptographic provenance attestations to
support verification and compliance workflows. This automated process reduces
the operational burden of manual patching and helps teams stay aligned with
secure software development practices.
secure software development practices.

## Automatic patching for customized images

When you [customize a Docker Hardened Image](../how-to/customize.md), your
customized images also benefit from automatic patching. When the base Docker
Hardened Image receives a security update, Docker automatically rebuilds your
customized images in the background, ensuring they stay current with the latest
security patches without requiring manual intervention.

This means your customizations maintain continuous compliance and protection by
default, with no additional operational overhead.
16 changes: 12 additions & 4 deletions content/manuals/dhi/how-to/customize.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,24 @@ description: Learn how to customize a Docker Hardened Images (DHI).

You can customize a Docker Hardened Image (DHI) to suit your specific needs
using the Docker Hub UI. This allows you to select a base image, add packages,
add artifacts, and configure settings. In addition, the build pipeline ensures that
your customized image is built securely and includes attestations.
add OCI artifacts (such as custom certificates or additional tools), and
configure settings. In addition, the build pipeline ensures that your customized
image is built securely and includes attestations.

Your customized images stay secure automatically. When the base Docker Hardened
Image receives a security patch or your OCI artifacts are updated, Docker
automatically rebuilds your customized images in the background. This ensures
continuous compliance and protection by default, with no manual work required.
The rebuilt images are signed and attested to the same SLSA Build Level 3
standard as the base images, ensuring a secure and verifiable supply chain.

## Customize a Docker Hardened Image

To add a customized Docker Hardened Image to your organization, an organization
owner must first [mirror](./mirror.md) the DHI repository to your organization.
Once the repository is mirrored, any user with access to the mirrored DHI
repository can create a customized image.

## Customize a Docker Hardened Image

To customize a Docker Hardened Image, follow these steps:

1. Sign in to [Docker Hub](https://hub.docker.com).
Expand Down