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 :: ubuntu set timezone 
Shell :: update kali 
Shell :: laravel install ui bootstrap with auth 
Shell :: start emulator from command line 
Shell :: linux loop over all arguments one by one 
Shell :: Could not find function xmlCheckVersion in library libxml2. Is libxml2 installed? 
Shell :: set hostname debian 10 
Shell :: apt-get update 
Shell :: codineer digital 
Shell :: jupyterlab documentation 
Shell :: permission denied: ./deploy.sh 
Shell :: update composer globally 
Shell :: Unable to resolve dependency tree error when installing npm packages 
Shell :: how to install vlc in fedora 
Shell :: wsl upgrade to 2 
Shell :: ignore file ownership changes git 
Shell :: kill gazebo 
Shell :: bash return n characters after match 
Shell :: conda install pyspark 
Shell :: check folder sizes linux 
Shell :: install pecl ubuntu 
Shell :: django allauth 
Shell :: random string linux 
Shell :: reload bashrc 
Shell :: how to stop a port from listening 
Shell :: find file in ubuntu 
Shell :: uninstall cheese ubuntu 
Shell :: kill port process 
Shell :: git set branch tracking 
Shell :: microsoft edge ubuntu uninstall command 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =