docs: update list of unimplemented Docker features#4747
Merged
AkihiroSuda merged 1 commit intocontainerd:mainfrom Feb 20, 2026
Merged
Conversation
Update command-reference.md to reflect the current state of feature parity with Docker: - Remove docker diff from unimplemented commands (now implemented) - Remove --isolation from unimplemented docker run flags (now implemented) - Remove --interactive from unimplemented docker start flags (now implemented) - Add --mount type=image as unimplemented mount type - Add :z and :Z (SELinux relabeling) as unimplemented volume options - Add docker buildx debug (buildx debugger) to unimplemented commands Fixes containerd#3867 Signed-off-by: rohansood10 <rohansood10@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Updates the unimplemented Docker features list in
docs/command-reference.mdto reflect the current state of nerdctl's feature parity with Docker.Features now implemented (removed from unimplemented lists)
docker diff— removed from "Unimplemented Docker commands" section (implemented incontainer_diff.go)docker run --isolation— removed from unimplemented run flags (now supported withdefault|process|host|hyperv)docker start --interactive— removed from unimplemented start flags (now supported)Missing Docker features added to documentation
--mount type=image— noted as unimplemented mount type (moby#48798):zand:Zvolume options — SELinux relabeling not yet supported (#371)docker buildx debug— buildx debugger added to unimplemented commands listFixes #3867
Note: This is a partial update. There are additional items that could be audited (compose flags, network flags, etc.) but this covers the most notable changes.