Skip to content

Commit ef7d94d

Browse files
authored
Update README.md
1 parent f1c822a commit ef7d94d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ We'll be using Docker Swarm for the container-orchestration system in these exam
1515
I have purposefully tried to keep as much of the configuration contained within compose files. The exception to this is an overlay network that all web servers along with the Traefik proxy attach to. I have called this network `web-servers`, and this is referenced in the example compose files as an external network.
1616

1717
We create that network here.
18-
`docker network create --driver overlay web-servers`
18+
`docker network create --driver overlay web-servers`
19+
If the network connecting your nodes is not private, the `--opt encrypted` flag can be used to encrypt the traffic.
20+
`docker network create --driver overlay --opt encrypted web-servers`
1921

2022

2123
## Traefik:

0 commit comments

Comments
 (0)