From 0fc81342e45ce57754fe517da119574ec7f827db Mon Sep 17 00:00:00 2001 From: Stephen Connolly Date: Wed, 18 Jan 2017 09:28:13 +0000 Subject: [PATCH] Restart the docker daemon after group changes Otherwise the verification step won't work. --- engine/installation/linux/centos.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/engine/installation/linux/centos.md b/engine/installation/linux/centos.md index 11e8445d7b9..1ec1c674e63 100644 --- a/engine/installation/linux/centos.md +++ b/engine/installation/linux/centos.md @@ -188,7 +188,13 @@ To create the `docker` group and add your user: This ensures your user is running with the correct permissions. -5. Verify that your user is in the docker group by running `docker` without `sudo`. +5. Restart the `docker` daemon. + + ```bash + $ sudo service docker restart + ``` + +6. Verify that your user is in the docker group by running `docker` without `sudo`. ```bash $ docker run --rm hello-world