From 02f2717eede63c91baab23d29f545df354bf5ec2 Mon Sep 17 00:00:00 2001 From: Ivan Ivanov Date: Fri, 3 Mar 2017 22:09:25 +0200 Subject: [PATCH] 3 typo changes (#2093) ```bash sudo nano /etc/docker/daemon.json ``` Here a $ sign is missing and the command in the web site appears as "bash sudo nano /etc/docker/daemon.json", which is not correct. It shoud look like: "$ sudo nano /etc/docker/daemon.json". "which is 2375 if you do not use TLS, and 2376 if you do." On all other lines the ports are in backquotes, so I have added backquotes here also. "In this case, steps 3 and 4." Missing verb like "repeat", I have added it. --- engine/installation/linux/linux-postinstall.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/installation/linux/linux-postinstall.md b/engine/installation/linux/linux-postinstall.md index 72743231ee..ae52ff124d 100644 --- a/engine/installation/linux/linux-postinstall.md +++ b/engine/installation/linux/linux-postinstall.md @@ -202,7 +202,7 @@ at `/etc/docker/daemon.json`. configuration. ```bash - sudo nano /etc/docker/daemon.json + $ sudo nano /etc/docker/daemon.json ``` 2. Add a `dns` key with one or more IP addresses as values. If the file has @@ -328,7 +328,7 @@ To configure UFW and allow incoming connections on the Docker port: 3. If you need to enable access to the Docker Remote API from external hosts and understand the security implications (see the section before this procedure), then configure UFW to allow incoming connections on the Docker port, - which is 2375 if you do not use TLS, and 2376 if you do. + which is `2375` if you do not use TLS, and `2376` if you do. ```bash $ sudo ufw allow 2376/tcp @@ -373,7 +373,7 @@ memory and a 10% overall performance degradation, even if Docker is not running. ``` If your GRUB configuration file has incorrect syntax, an error will occur. - In this case, steps 3 and 4. + In this case, repeat steps 3 and 4. 6. Reboot your system. Memory and swap accounting are enabled and the warning does not occur.