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/)