Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2.2k
cli/command: Add quiet option for create and run#3377
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -99,6 +99,7 @@ Options: | ||
| -p, --publish value Publish a container's port(s) to the host (default []) | ||
| -P, --publish-all Publish all exposed ports to random ports | ||
| --pull string Pull image before creating ("always"|"missing"|"never") (default "missing") | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for this one; while reviewing your PR, I noticed that we missed adding this to the docs. Given that the | ||
| -q, --quiet Suppress the pull output | ||
| --read-only Mount the container's root filesystem as read only | ||
| --restart string Restart policy to apply when a container exits (default "no") | ||
| Possible values are: no, on-failure[:max-retry], always, unless-stopped | ||
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 was a bit in doubt on the best description for this (was considering, perhaps we should use the same as
docker swarm ca, which usesSuppress progress output, ordocker push/pull(which useSuppress verbose output)But it looks like we're not consistent anywhere currently, so let's just keep this 👍