docs: add network ip masquerade example#7075
Open
lsh1215 wants to merge 1 commit into
Open
Conversation
Signed-off-by: sanghun <vitash1215@gmail.com>
lsh1215
added a commit
to lsh1215/OSSFinder
that referenced
this pull request
Jun 26, 2026
Mark docker/docs#13861 as PR-backed by docker/cli#7075 and move it to the in-progress contribution view. Tested: npm run build; npm run lint; npm run check:append-only; npm run check:korean-content; git diff --check Co-authored-by: OmX <omx@oh-my-codex.dev>
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.
What changed
Added a small
docker network createexample showing how to configure IP masquerading for a custombridgenetwork with--opt com.docker.network.bridge.enable_ip_masquerade=false.Why
This follows up on docker/docs#13861. The existing table maps
com.docker.network.bridge.enable_ip_masqueradeto the--ip-masqdaemon option for the defaultdocker0bridge, but it does not directly show the equivalentdocker network createcommand for a custom bridge network.Related issue status
#5599 already improved this section by clarifying that
--ip-masqis a daemon option for the defaultdocker0bridge. This PR adds a direct example for configuring the equivalent bridge driver option when creating a custom bridge network.If maintainers consider #5599 sufficient for docker/docs#13861, then the issue may only need a status decision rather than this follow-up change.
Validation
make -f docker.Makefile mddocsmake -f docker.Makefile yamldocsgit diff --checkNotes
This is a documentation-only change. It does not change Docker CLI or daemon behavior.