docker mysql
环境准备
安装docker技术,注意ubuntu的源地址是aliyun
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
建立国内镜像
01 建立deamon.json 配置docker国内镜像加速地址
$ sudo vim /etc/docker/daemon.json
#添加内容如下:
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
02更新重启
sudo systemctl reload docker
sudo ststemctl restart docker
sudo service docker status
03添加用户sudo gpasswd -a 用户名 docker
newgrp docker 更新用户
测试
docker images
`
测试
docker images