Docker使用
Linux安装
uname -a //查看Linux版本
yum -y install docker //安装docker
systemctl start docker //启动
systemctl start docker //查看运行状态
docker version //查看版本
cd /etc/docker/daemon.json //修改为阿里镜像
systemctl enable docker.service
systemctl daemon-reload
systemctl restart docker
#daemon.json
{
"registry-mirrors": ["https://01sy6s7g.mirror.aliyuncs.com"]
}
docker可视化界面
docker pull portainer/portainer //拉取镜像
docker volume create portainer_db //创建数据卷
docker run -d --name portainer-web -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_db:/data portainer/portainer //运行
常用命令
docker rm -f xxx //删除容器
docker images //查看镜像列表
docker search xxx //查找镜像
docker rmi xxx //删除镜像
docker build //构建镜像
docker tag xxx //设置镜像标签
Docker 容器使用 | 菜鸟教程 (runoob.com)
https://101.lug.ustc.edu.cn/Ch08/#use-ubuntu-bash
k8s使用
。。。待补充
标签:xxx,使用,systemctl,portainer,镜像,docker,k8s From: https://www.cnblogs.com/learn-gz/p/18223375