使用官方安装脚本自动安装
国内daocloud一键安装命令curl -sSL https://get.daocloud.io/docker | sh
安装测试
启动Dockersystemctl start docker
Docker自启systemctl enable docker
运行hello-worlddocker pull hello-worlddocker run hello-world
添加docker用户
sudo groupadd dockersudo gpasswd -a $USER dockernewgrp dockerdocker ps
