From 7cbec7099aab77b073ae9d7b0171b7f1dc63e72b Mon Sep 17 00:00:00 2001 From: Alan James Klein <31774420+Saganoky@users.noreply.github.com> Date: Sat, 19 Apr 2025 12:26:46 -0500 Subject: [PATCH] Update README.md adding a troubleshooting section. --- demo1/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/demo1/README.md b/demo1/README.md index 56ad0ab..7028bb0 100644 --- a/demo1/README.md +++ b/demo1/README.md @@ -47,3 +47,15 @@ You can tear down the lab, which will stop and delete all of the running contain ``` sudo containerlab destroy ``` +# Troubleshooting + +If you get a docker permission denied error, this can be fixed by adding the vagrant user to the docker group. See the following commands. + +``` +sudo groupadd docker +sudo usermod -aG docker $USER +newgrp docker +``` + +Now you should be able to run the commands as writen in the readme. For more info see the following website. +https://linuxhandbook.com/docker-permission-denied/