docs: prefer --network to --net

The option --network is the more official option as it is
listed in

podman run --help
podman kube play --help

Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
This commit is contained in:
Erik Sjölund
2024-10-05 09:01:58 +02:00
parent 8d5ec11d0b
commit 374844817d
3 changed files with 4 additions and 4 deletions

View File

@ -28029,7 +28029,7 @@ msgid "Network=host"
msgstr ""
#: ../../source/markdown/podman-systemd.unit.5.md:1
msgid "--net host"
msgid "--network host"
msgstr ""
#: ../../source/markdown/podman-systemd.unit.5.md:1

View File

@ -299,7 +299,7 @@ Valid options for `[Container]` are listed below:
| LogOpt=path=/var/log/mykube\.json | --log-opt path=/var/log/mykube\.json |
| Mask=/proc/sys/foo\:/proc/sys/bar | --security-opt mask=/proc/sys/foo:/proc/sys/bar |
| Mount=type=... | --mount type=... |
| Network=host | --net host |
| Network=host | --network host |
| NetworkAlias=name | --network-alias name |
| NoNewPrivileges=true | --security-opt no-new-privileges |
| Notify=true | --sdnotify container |
@ -1125,7 +1125,7 @@ Valid options for `[Kube]` are listed below:
| GlobalArgs=--log-level=debug | --log-level=debug |
| KubeDownForce=true | --force (for `podman kube down`) |
| LogDriver=journald | --log-driver journald |
| Network=host | --net host |
| Network=host | --network host |
| PodmanArgs=\-\-annotation=key=value | --annotation=key=value |
| PublishPort=59-60 | --publish=59-60 |
| SetWorkingDirectory=yaml | Set `WorkingDirectory` of unit file to location of the YAML file |

View File

@ -128,7 +128,7 @@ client can connect to the container.
Now run the container.
```
$ podman run -dt --name webserver --net podman1 -p 8081:80 quay.io/libpod/banner
$ podman run -dt --name webserver --network podman1 -p 8081:80 quay.io/libpod/banner
269fd0d6b2c8ed60f2ca41d7beceec2471d72fb9a33aa8ca45b81dc9a0abbb12
```
Note in the above run command, the containers port 80 (where the Nginx server is