Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker install in centos u7

sudo yum update
sudo yum install yum-utils device-mapper-persistent-data lvm2

sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo yum install docker-ce -y
sudo systemctl start docker
sudo systemctl enable docker
sudo systemctl status docker
sudo docker -v
Comment

install docker on centos

# First add repo to yum config manager
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
# Use added repo to install and start docker
sudo yum install docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
# Optional: Validate by run sample image 
sudo docker run hello-world
Comment

cent os install docker

sudo yum install -y yum-utils

$ sudo yum-config-manager 
    --add-repo 
    https://download.docker.com/linux/centos/docker-ce.repo
Comment

PREVIOUS NEXT
Code Example
Shell :: bash tar list of files from folder 
Shell :: symbolic link linux 
Shell :: vim delete every other line 
Shell :: learn typeorm 
Shell :: github get repo size 
Shell :: Flutter plugin not installed; this adds Flutter specific functionality 
Shell :: download mongodb ubuntu 20.04 
Shell :: how to install deepin desktop environment on ubuntu 20.10 
Shell :: git push takes forever 
Shell :: create swapfile ubuntu 
Shell :: grep line after match 
Shell :: npm install postgresql 
Shell :: generate keystore file for android 
Shell :: installing font awesome brand icons 
Shell :: check which python script is running 
Shell :: Use slack in your terminal or CLI 
Shell :: install zipalign kali linux 
Shell :: source bash_profile on startup mac 
Shell :: sequence of png images to mp4 
Shell :: install vlc on fedora 
Shell :: github.com api 
Shell :: docker proxy ubuntu 
Shell :: Run node red in widnows 
Shell :: git pull origin main 
Shell :: find the process ID of a running process bash 
Shell :: dockerfile env 
Shell :: what is user in linux? 
Shell :: zsh print each line of script 
Shell :: ubuntu install mariadb 
Shell :: Install Pop Shell Window Tiling Extension on Ubuntu 20.04 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =