定义
Docker使得应用程序运行环境的隔离和迁移变得更加简单
在centos安装docker
配置阿里镜像源
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
docker的启动与停止
systemctl命令是系统服务管理器指令
启动
systemctl start docker
停止
systemctl stop docker
重启
systemctl restart docker
查看状态
systemctl status docker
开机启动
systemctl enable docker
加速镜像
/etc/docker/daemon.conf
{ "registry-mirrors": [ "https://registry.docker-cn.com", "http://hub-mirror.c.163.com", "https://docker.mirrors.ustc.edu.cn" ] }
systemctl daemon-reload
systemctl restart docker
ubuntu安装docker
https://blog.csdn.net/longzhoufeng/article/details/82421322
docker配置重启
docker update --restart=always 容器ID(或者容器名)
docker配置容器名
docker run -d --restart=always --name 设置容器名 使用的镜像
批量删除镜像
docker rmi $(docker images -qa)
批量删除容器
docker rm $(docker ps -qf status=Created)