diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-07-19 02:22:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-19 02:22:28 +0200 |
commit | b59abdc1b1cf72d86d3fe6bb76ba646870c86ed6 (patch) | |
tree | 077b0c03cbc511267dd2d6401952178a70ec3296 /docs/podman-create.1.md | |
parent | b98e015527d5b1981307d36c40a42ca1531b583c (diff) | |
parent | 3f721f8b17780931a75f9e072e4d32bf9a49e976 (diff) | |
download | podman-b59abdc1b1cf72d86d3fe6bb76ba646870c86ed6.tar.gz podman-b59abdc1b1cf72d86d3fe6bb76ba646870c86ed6.tar.bz2 podman-b59abdc1b1cf72d86d3fe6bb76ba646870c86ed6.zip |
Merge pull request #3579 from QiWang19/dns_net
fix --dns and --network conflict
Diffstat (limited to 'docs/podman-create.1.md')
-rw-r--r-- | docs/podman-create.1.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/podman-create.1.md b/docs/podman-create.1.md index 24a78ab93..4008b64e6 100644 --- a/docs/podman-create.1.md +++ b/docs/podman-create.1.md @@ -214,7 +214,7 @@ Limit write rate (IO per second) to a device (e.g. --device-write-iops=/dev/sda: **--dns**=*dns* -Set custom DNS servers +Set custom DNS servers. Invalid if using **--dns** and **--network** that is set to 'none' or 'container:<name|id>'. This option can be used to override the DNS configuration passed to the container. Typically this is necessary when the @@ -226,11 +226,11 @@ The **/etc/resolv.conf** file in the image will be used without changes. **--dns-option**=*option* -Set custom DNS options +Set custom DNS options. Invalid if using **--dns-option** and **--network** that is set to 'none' or 'container:<name|id>'. **--dns-search**=*domain* -Set custom DNS search domains (Use --dns-search=. if you don't wish to set the search domain) +Set custom DNS search domains. Invalid if using **--dns-search** and **--network** that is set to 'none' or 'container:<name|id>'. (Use --dns-search=. if you don't wish to set the search domain) **--entrypoint**=*"command"* | *'["command", "arg1", ...]'* @@ -499,7 +499,7 @@ This works for both background and foreground containers. **--network**, **--net**="*bridge*" -Set the Network mode for the container +Set the Network mode for the container. Invalid if using **--dns**, **--dns-option**, or **--dns-search** with **--network** that is set to 'none' or 'container:<name|id>'. 'bridge': create a network stack on the default bridge 'none': no networking 'container:<name|id>': reuse another container's network stack |