Docker 学习总结(Dockerfile、Compose、Swarm)

Dokcer基础

一、查看Linux详尽信息

 cat /etc/*elease
CentOS Linux release 7.2.1511 (Core)
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

CentOS Linux release 7.2.1511 (Core)
CentOS Linux release 7.2.1511 (Core)

二、容器的五大隔离

pid:进程隔离
net:网络隔离 (独有的ip地址,网关,子网掩码)
ipc:进程间交互隔离
mnt:文件系统隔离
uts:主机和域名隔离 (hostname,domainname)container 有自己的机器名

三、centos上安装docker

官方地址:https://docs.docker.com/install/linux/docker-ce/centos/

安装包环境

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

设置仓储地址

阿里云仓储地址:yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

安装Docker(CentOS 7 安装Docker-ce)

yum install docker-ce docker-ce-cli containerd.io

 

————————————————
版权声明:本文为CSDN博主「℡无敌小霸王」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yangtao201/article/details/106152994

你可能感兴趣的:(docker)