-
Notifications
You must be signed in to change notification settings - Fork 7.8k
engine: containerd #23198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ArthurFlag
wants to merge
17
commits into
moby29
Choose a base branch
from
ENGDOCS-2893-containerd
base: moby29
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
engine: containerd #23198
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
74c6fd5
add deprecated summary
ArthurFlag b36d5f3
add summary snippet
ArthurFlag a5ccbab
hugo stats
ArthurFlag e1a55b7
update summary.yaml
ArthurFlag ab2b113
support "text" param
ArthurFlag da143b4
update css for deprcated warning
ArthurFlag 86297a5
add title snippet
ArthurFlag 509a896
update terms
ArthurFlag d19c521
move icons ahead of category
ArthurFlag a064a0d
wip: content
ArthurFlag a4edc5c
touch up
ArthurFlag ba26396
vale
ArthurFlag c6c5f62
hugo stats
ArthurFlag da0af06
feedback
ArthurFlag fd2cb6c
fix summary comp
ArthurFlag 15c8c0d
fix link
ArthurFlag 4653c10
Merge branch 'main' into ENGDOCS-2893-containerd
ArthurFlag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
title: containerd snapshotters | ||
description: Learn how to use containerd snapshotters in Docker Engine. | ||
keywords: containerd, snapshotters, storage, overlayfs, fuse, docker, engine, filesystem, performance | ||
--- | ||
|
||
containerd snapshotters are components responsible for managing the filesystem | ||
layers of containers. They provide the mechanism for storing, mounting, and | ||
manipulating container filesystems using different backends such as overlayfs or | ||
fuse. | ||
|
||
By abstracting the storage implementation, snapshotters allow Docker Engine to | ||
efficiently manage container images and their writable layers, enabling features | ||
like fast image pulls, efficient storage usage, and support for advanced | ||
filesystems. | ||
|
||
For more information, see | ||
the [containerd repository](https://github.com/containerd/containerd/tree/main/docs/snapshotters). | ||
|
||
| Snapshotter | Description | | ||
|-----------------------|----------------------------------------------------------------------------------------| | ||
| `overlayfs` (default) | OverlayFS. The containerd implementation of the Docker/Moby `overlay2` storage driver. | | ||
| `native` | Native file copying driver. Akin to Docker/Moby's "vfs" driver. | | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like I was a little fast on the gun here. Sorry about that. The containerd migration feature will be experimental in v29 and can be enabled with the following daemon configuration.
IDK if we need to clarify this is useful for users upgrading in place. Fresh installs wouldn't find it very useful. WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated the section. As for your question, I would say "less is more", people that start fresh will surely know they have nothing to migrate so would skip this section?