Docker installation and configuration command code examples

Docker installation and configuration command code examples

Docker installation

Install dependency packages

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

Setting up Alibaba Cloud image source

sudo yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

Install Docker-CE

sudo yum install docker-ce

Start Docker

# Start automatically at boot sudo systemctl enable docker 
# Start the docker service sudo systemctl start docker

Operation Command

# 1. View the installed docker:
docker images
# 2. Uninstall docker:
sudo yum remove -y XXX
# 3. Delete the container image:
sudo rm -rf /var/lib/docker
# 4. Reinstall Docker
sudo yum install docker-ce
# 5. Docker running status docker ps -a

This is the end of this article about Docker installation and configuration command code examples. For more information about Docker installation and configuration commands, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Simple operation of installing vi command in docker container
  • How to install the latest version of docker using deepin apt command
  • Detailed explanation of the installation commands and usage of Docker and FastDFS
  • Summary of common Docker commands: installation, mirroring, and basic container operations
  • Detailed explanation of how to install Docker and operate commands under CentOS 7

<<:  CSS achieves a proportional display effect of an element with fixed height and width

>>:  MySQL database import and export data error solution example explanation

Recommend

How to use Spark and Scala to analyze Apache access logs

Install First you need to install Java and Scala,...

How to quickly build a static website on Alibaba Cloud

Preface: As a junior programmer, I dream of build...

9 Tips for Web Page Layout

<br />Related articles: 9 practical suggesti...

Docker renames the image name and TAG operation

When using docker images, images with both REPOSI...

Detailed steps to delete environment variables in Linux

How to delete environment variables in Linux? Use...

Javascript to achieve drumming effect

This article shares the specific code of Javascri...

Tutorial on disabling and enabling triggers in MySQL [Recommended]

When using MYSQL, triggers are often used, but so...

MySQL 5.7.27 winx64 installation and configuration method graphic tutorial

This article shares the installation and configur...

Win2008 R2 mysql 5.5 zip format mysql installation and configuration

Win2008 R2 zip format mysql installation and conf...

jQuery achieves breathing carousel effect

This article shares the specific code of jQuery t...

Shell script settings to prevent brute force ssh

The shell script sets access control, and the IP ...

Detailed tutorial on deploying Django project using Docker on centos8

introduction In this article, we will introduce h...