Last active
November 16, 2022 23:36
-
-
Save Turmaxx/fcaf6dce827751207decb4a8905a7d11 to your computer and use it in GitHub Desktop.
This script is a fix for 'Got permission denined while trying to connect to Docker deamon'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo groupadd docker | |
| sudo usermod -aG docker $USER | |
| # System will need a reboot | |
| reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment