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
| # Donwloads project | |
| echo "\033[0;32m## Installing \033[1;34mdocker dependecies\033[0;37;00m" | |
| sudo apt install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common | |
| echo "\033[0;32m## Adding \033[1;34mdocker gpg key\033[0;37;00m" | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -f - | |
| sudo apt-key fingerprint 0EBFCD88 | |
| echo "\033[0;32m## Adding \033[1;34mdocker respository\033[0;37;00m" | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |
OlderNewer