"read-only" vs. "only readable by you"
Refer to:
https://github.com/docker/docker/pull/9952#discussion_r22690266
Signed-off-by: Lorenz Leutgeb <lorenz.leutgeb@gmail.com>
| ... | ... |
@@ -111,7 +111,7 @@ With a default `umask` of 022, your secret keys will be *world-readable* and |
| 111 | 111 |
writable for you and your group. |
| 112 | 112 |
|
| 113 | 113 |
In order to protect your keys from accidental damage, you will want to remove their |
| 114 |
-write permissions. To make them read-only, change file modes as follows: |
|
| 114 |
+write permissions. To make them only readable by you, change file modes as follows: |
|
| 115 | 115 |
|
| 116 | 116 |
$ chmod -v 0400 ca-key.pem key.pem server-key.pem |
| 117 | 117 |
|