Docker (a) - CentOS7 installed Docker - (video tutorial)

Docker use more and more, installation is relatively simple. This article shows a way to use video installation Docker in CentOS7 system, this is more suitable for entry-learning Docker prepare the child boots.

The following video, put on headphones to listen to the beginning

(Double-click the full-screen playback)

Past Tutorial:

.NET development framework (a) - Introduction and framework for video presentation

.NET development framework (b) - Function Description Framework

.NET development framework (three) - high availability server design

(Iv) .NET development framework - server IIS Practice Guide

.NET development framework (five) to deploy ASP.NET Core Project tutorial on -IIS

.NET development framework (six) - architecture of IIS Load Balancing (video)

.NET development framework (seven) - the technology stack learning catalog

.NET development framework (eight) - network load balancing cluster of servers (video)

.NET development framework (nine) -NLB Network Load Balancing configuration combat (video)

Hyper-V + CentOS7 mounted video tutorial

Hyper-V + CentOS7 network settings (video tutorial)

Ocelot - .Net Core open source gateway

Ocelot (II) - requesting load balancing Polymerization

Ocelot (c) - Service Discovery

Ocelot (four) - Authentication and Authorization

Ocelot (five) - traffic restrictions, Quality of Service

Ocelot (six) - Chart


Exceptionless - .Net Core open source logging framework

Exceptionless (two) - Advanced Use

Briefing :( six) IIS load balancing video tutorials, so far a total of 39 people involved in a complete tutorial to learn.

 

Appendix: video instructions by reference

Second, the environment

CentOS7

Third, the installation Docker

Linux kernel version confirmed

# uname -a

Uninstall the old version

# yum remove docker \                               
docker-client \
            
docker-client-latest \
            
docker-common \
            
docker-latest \
            
docker-latest-logrotate \
            
docker-logrotate \
            
docker-engine

Install the necessary system tools

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

Add information source software

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

Installation Docker-ce

# yum -y install docker-ce

Start Docker Service

systemctl start docker

Set the service to boot

systemctl enable docker

Guess you like

Origin www.cnblogs.com/letyouknowdotnet/p/11407648.html