Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions demo1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/