This commit is contained in:
pablo 2022-09-07 22:50:53 +02:00
parent f82adf049f
commit e5e29d9b5b
2 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,12 @@
# Add user to docker group
Adding a user to the docker group allows the user to run docker without the need
of `sudo` permission.
```bash
sudo groupadd docker
sudo usermod -aG docker $USER
```
Log out and in for the change to take effect.