From c0b7b58134b6b24649ccedfbd7403473d9e3f0cc Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 25 Jan 2021 17:41:58 +0100 Subject: [PATCH] fix docker-run man page table formatting Signed-off-by: Sebastiaan van Stijn --- man/docker-run.1.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/man/docker-run.1.md b/man/docker-run.1.md index 4820420b90..c36af33031 100644 --- a/man/docker-run.1.md +++ b/man/docker-run.1.md @@ -504,13 +504,13 @@ and foreground Docker containers. **--network**=*type* Set the Network mode for the container. Supported values are: -| Value | Description | -|:----------------------------|:-----------------------------------------------------------------------------------------| -| **none** | No networking in the container. | -| **bridge** | Connect the container to the default Docker bridge via veth interfaces. | -| **host** | Use the host's network stack inside the container. | -| **container:**_name_|_id_ | Use the network stack of another container, specified via its _name_ or _id_. | -| _network-name_|_network-id_ | Connects the container to a user created network (using `docker network create` command) | +| Value | Description | +|:-----------------------------|:-----------------------------------------------------------------------------------------| +| **none** | No networking in the container. | +| **bridge** | Connect the container to the default Docker bridge via veth interfaces. | +| **host** | Use the host's network stack inside the container. | +| **container:**_name_\|_id_ | Use the network stack of another container, specified via its _name_ or _id_. | +| _network-name_\|_network-id_ | Connects the container to a user created network (using `docker network create` command) | Default is **bridge**.