Skip to content

Commit 8be47f6

Browse files
David Karlssonaevesdocker
David Karlsson
andcommitted
fix: editorial improvements
Signed-off-by: David Karlsson <david.karlsson@docker.com> Co-authored-by: Aevesdocker <aevesdocker@users.noreply.github.com>
1 parent c90454b commit 8be47f6

File tree

7 files changed

+19
-23
lines changed

7 files changed

+19
-23
lines changed

_data/toc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ manuals:
13531353
- sectiontitle: Network drivers
13541354
section:
13551355
- path: /network/drivers/
1356-
title: Drivers overview
1356+
title: Overview
13571357
- path: /network/drivers/bridge/
13581358
title: Bridge
13591359
- path: /network/drivers/overlay/
@@ -1365,7 +1365,7 @@ manuals:
13651365
- path: /network/drivers/macvlan/
13661366
title: Macvlan
13671367
- path: /network/drivers/none/
1368-
title: None
1368+
title: None (no networking)
13691369
- path: /network/proxy/
13701370
title: Configure Docker to use a proxy server
13711371
- sectiontitle: Networking tutorials

engine/install/debian.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ To get started with Docker Engine on Debian, make sure you
1919

2020
> **Note**
2121
>
22-
> If you use ufw to manage firewall settings, note that when you expose
23-
> container ports using Docker, those ports bypass any firewall rules that
24-
> you configure with ufw. See
25-
> [Docker and ufw](../../network/packet-filtering-firewalls.md#docker-and-ufw)
26-
> for details.
22+
> If you use ufw to manage firewall settings, it's important to be aware that
23+
> when you expose container ports using Docker, these ports bypass any
24+
> firewall rules set up with ufw. For more information, refer to
25+
> [Docker and ufw](../../network/packet-filtering-firewalls.md#docker-and-ufw).
2726
2827
### OS requirements
2928

engine/install/raspbian.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@ To get started with Docker Engine on Raspbian, make sure you
1616

1717
> **Note**
1818
>
19-
> If you use ufw to manage firewall settings, note that when you expose
20-
> container ports using Docker, those ports bypass any firewall rules that
21-
> you configure with ufw. See
22-
> [Docker and ufw](../../network/packet-filtering-firewalls.md#docker-and-ufw)
23-
> for details.
19+
> If you use ufw to manage firewall settings, it's important to be aware that
20+
> when you expose container ports using Docker, these ports bypass any
21+
> firewall rules set up with ufw. For more information, refer to
22+
> [Docker and ufw](../../network/packet-filtering-firewalls.md#docker-and-ufw).
2423
2524
### OS requirements
2625

engine/install/ubuntu.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ To get started with Docker Engine on Ubuntu, make sure you
2424

2525
> **Note**
2626
>
27-
> If you use ufw to manage firewall settings, note that when you expose
28-
> container ports using Docker, those ports bypass any firewall rules that
29-
> you configure with ufw. See
30-
> [Docker and ufw](../../network/packet-filtering-firewalls.md#docker-and-ufw)
31-
> for details.
27+
> If you use ufw to manage firewall settings, it's important to be aware that
28+
> when you expose container ports using Docker, these ports bypass any
29+
> firewall rules set up with ufw. For more information, refer to
30+
> [Docker and ufw](../../network/packet-filtering-firewalls.md#docker-and-ufw).
3231
3332
### OS requirements
3433

network/drivers/bridge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ daemon. The following tables shows which options have equivalent flags in the
129129
| `com.docker.network.container_iface_prefix` | - |
130130

131131
The Docker daemon supports a `--bridge` flag, which you can use to define a
132-
custom network bridge. You use this option if you want to run multiple daemon
132+
custom network bridge. Use this option if you want to run multiple daemon
133133
instances on the same host. For details, see
134134
[Run multiple daemons](../../engine/reference/commandline/dockerd.md#run-multiple-daemons).
135135

network/drivers/index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ exist by default, and provide core networking functionality:
4242

4343
### Network driver summary
4444

45-
- The default bridge network is commonly used for running containers that don't
46-
require custom networking configurations, such as container-to-container
47-
connectivity.
45+
- The default bridge network is good for running containers that don't require
46+
special networking capabilities.
4847
- User-defined bridge networks enable on the same Docker host to communicate
4948
with each other. A user-defined network typically defines an isolated network
5049
for multiple containers belonging to a common project or component.

network/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ a gateway, a routing table, DNS services, and other networking details.
2323
That is, unless the container uses the `none` network driver.
2424
This page describes networking from the point of view of the container.
2525

26-
This page describes the concepts around container networking.
26+
This page also describes the concepts around container networking.
2727
This page doesn't describe OS-specific details about how Docker networks work.
2828
For information about how Docker manipulates `iptables` rules on Linux,
2929
see [Packet filtering and firewalls](packet-filtering-firewalls.md).
@@ -116,7 +116,7 @@ of different factors:
116116
Under most circumstances, name resolution with multiple nameservers should work
117117
as follows:
118118
119-
1. The container emits requests to **all** nameservers that you specify.
119+
1. The container emits requests to all nameservers that you specify.
120120
2. The container uses the first response returned by any of the nameservers.
121121
Even if the first response is `NXDOMAIN`, or similar.
122122

0 commit comments

Comments
 (0)