docs: fix Mac path escaping for admin-settings.json location#24980
Open
mohithshuka wants to merge 5 commits intodocker:mainfrom
Open
docs: fix Mac path escaping for admin-settings.json location#24980mohithshuka wants to merge 5 commits intodocker:mainfrom
mohithshuka wants to merge 5 commits intodocker:mainfrom
Conversation
Closes docker#23256 - Added container architecture diagram showing isolated containers sharing the host OS kernel - Added containers vs VMs comparison diagram highlighting the absence of a Guest OS in containers
The post_start example had chown arguments in wrong order. Correct syntax is: chown -R [owner:group] [path] Fixes docker#24853
The previous examples used CMD (exec form) with curl but without || exit 1. Since CMD uses exec format, shell operators like || are not available, meaning a non-zero curl exit code may not correctly propagate as unhealthy. CMD-SHELL runs via /bin/sh so || exit 1 works as expected. Fixes docker#23077
The installation-time setup tab only showed single org usage of --allowed-org. Added examples for specifying multiple organizations by repeating the flag, and noted the version requirement (4.36+). Fixes docker#24947
Remove incorrect backslash escape in Mac file path. Inside Markdown code spans, paths render literally so 'Application\ Support' should be 'Application Support'. Fixes docker#24968
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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 does this PR do?
Fixes incorrect backslash escape in the macOS file path for
admin-settings.json.Inside Markdown inline code spans, paths render literally, so
Application\ Supportwas displaying the backslash to users instead of the correct path
Application Support.Before:
/Library/Application\ Support/com.docker.docker/admin-settings.jsonAfter:
/Library/Application Support/com.docker.docker/admin-settings.jsonRelated issues
Fixes #24968