Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install docker linux mint

sudo apt -y install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(. /etc/os-release; echo "$UBUNTU_CODENAME") stable"
sudo apt update
sudo apt install docker-ce
sudo usermod -aG docker $USER
Comment

docker install linux mint

curl -fsSL https://get.docker.com -o /tmp/get-docker.sh && sudo sh /tmp/get-docker.sh && 
sudo usermod -aG docker $USER && newgrp docker && 
newgrp docker && 
sudo curl -L "github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/bin/docker-compose && 
sudo chmod +x /usr/bin/docker-compose
Comment

PREVIOUS NEXT
Code Example
Shell :: git format-patch 
Shell :: Download and install minikube 
Shell :: git push default 
Shell :: how to install amplify cli to your react project 
Shell :: command to reset the colors in the terminal 
Shell :: vim set color scheme in vimrc 
Shell :: ubuntu install docker-compose 
Shell :: linux make file 
Shell :: sudo unzip command 
Shell :: command to select a word in vim 
Shell :: install nodejs 16 on ubuntu 
Shell :: git delete all remote branch except master 
Shell :: git delete file 
Shell :: disable swap kubernetes ansible 
Shell :: terminate gitpod ports 
Shell :: git add ssh key 
Shell :: xampp ubuntu 20.04 
Shell :: doskey permanent 
Shell :: docker pull command 
Shell :: find file modified in last minutes 
Shell :: grep print all after 
Shell :: bash while 
Shell :: create file in linux using cat 
Shell :: Git create a new repository on the command line 
Shell :: oauth2 provider 
Shell :: replace whitespace with newline 
Shell :: linux change permissions recursive only directories 
Shell :: boostrap install 
Shell :: rename file linux 
Shell :: sudo gem install cocoapods-deintegrate cocoapods-clean 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =