From f7ea65ca68c252bac4731544ce097ce10c5ea87c Mon Sep 17 00:00:00 2001 From: Christian Klaussner Date: Sun, 14 Jan 2018 14:35:55 +0100 Subject: [PATCH] Fix typo in "Non-root User" section (#612) --- docs/BestPractices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/BestPractices.md b/docs/BestPractices.md index ffc5e208..715994e3 100644 --- a/docs/BestPractices.md +++ b/docs/BestPractices.md @@ -39,7 +39,7 @@ You can also include Tini [directly in your Dockerfile](https://github.com/krall ## Non-root User -By default, Docker runs container as root which inside of the container can pose as a security issue. You would want to run the container as an unprivileged user wherever possible. The node images provide the `node` user for such purpose. The Docker Image can than be run with the `node` user in the following way: +By default, Docker runs container as root which inside of the container can pose as a security issue. You would want to run the container as an unprivileged user wherever possible. The node images provide the `node` user for such purpose. The Docker Image can then be run with the `node` user in the following way: ``` -u "node"