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 lfs install 
Shell :: install yarn 
Shell :: linux total memory 
Shell :: restart computer by terminul in ubuntu 
Shell :: set executable permissions linux 
Shell :: docker-compose ps 
Shell :: clear arp table ubuntu] 
Shell :: git ignore except 
Shell :: ng generate service 
Shell :: scp HostKeyVerification=false 
Shell :: fish alias 
Shell :: install passport local 
Shell :: split bash string 
Shell :: git clone with subrepos 
Shell :: How to unzip a file using the cmd? 
Shell :: how to kill process ubuntu 
Shell :: cp bash 
Shell :: how to make a script run on boot linux 
Shell :: download brew 
Shell :: check android studio path linux 
Shell :: how to change bash prompt color 
Shell :: bash size file 
Shell :: Large files detected. You may want to try Git Large File Storage 
Shell :: remove all local branches not on remote 
Shell :: how to install curl on macos 
Shell :: refresh prometheus configuration 
Shell :: zip some files linux 
Shell :: change branch name 
Shell :: react navigation react native 
Shell :: generating javadoc 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =