From 9909f4e37a8d4e4666bbd047c3ad9498c0d91d27 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Thu, 17 Mar 2022 22:22:25 +0100 Subject: [PATCH] feat: adjust Docker setup --- doc/docker.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/docker.md b/doc/docker.md index 3da3a65..1aeaa17 100644 --- a/doc/docker.md +++ b/doc/docker.md @@ -49,6 +49,21 @@ systemctl status docker containerd docker -v ``` +* add the user to the group ‘docker‘ +``` +sudo usermod -aG docker +``` + +* log in as user using the command below and verify the configuration +``` +su - +``` + +* run the following docker command to verify your installation +``` +docker run hello-world +``` + ## Links [How to Install Docker on Debian 11](https://www.techlear.com/blog/2021/10/01/how-to-install-docker-on-debian-11/)