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 | |
| #Add the docker group if it doesn't already exist | |
| sudo groupadd docker | |
| #Add the connected user $USER to the docker group | |
| sudo gpasswd -a $USER docker |
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 | |
| # Installing Docker | |
| #First, update your existing list of packages: | |
| sudo apt update | |
| #Next, install a few prerequisite packages which let apt use packages over HTTPS: | |
| sudo apt install apt-transport-https ca-certificates curl software-properties-common |
NewerOlder