标签 ›
CKA
转载文章请注明源地址:https://www.latiao.org/707.html
按照本文一步一步来,有Linux基础就可以成功!
本文实验基于Centos7.9 机器均为4C 4GB;
Master centos7 10.12.0.100Worker1 centos7 10.12.0.101Worker2 centos7 10.12.0.102
所有节...
课程来自于: 老段工作室 https://www.rhce.cc/本文档采用的系统为:CentOS Linux release 7.4.1708 (Core)
1.在宿主机里查找文件
find / -name aaa.txt ---没找着
2.进入到web1这个容器里
nerdctl exec -it nginx-7b6af bash 之后创建aaa.txt
tou...
本文档采用的系统为:CentOS Linux release 7.4.1708 (Core)
课程来自于: 老段工作室 https://www.rhce.cc/
查看容器
nerdctl ps 在运行的容器
nerdctl ps -a 所有容器
创建容器
nerdctl run 镜像 ---最简单的一个容器
nerdctl run hub.c.163...
本文档采用的系统为:CentOS Linux release 7.4.1708 (Core)
课程来自于: 老段工作室 https://www.rhce.cc/
镜像的命名方式
仓库地址/分类/镜像名:tag
拉取镜像
nerdctl pull nginx #nerdctl pull 镜像 #默认是从dockerhub #https://hub.dock...
本文档采用的系统为:CentOS Linux release 7.4.1708 (Core)
课程来自于: 老段工作室 https://www.rhce.cc/
下载最新版本,上传至服务器,本实验采用的是nerdctl-1.0.0-linux-amd64.tar.gz,
https://github.com/containerd/nerdctl/releas...
本文档采用的系统为:CentOS Linux release 7.4.1708 (Core)
课程来自于: 老段工作室 https://www.rhce.cc/
低级别运行时 runc lxc 只能管理容器
高级别运行时 docker containerd 不仅可以管理容器,还可以管理镜像。所有镜像用的标准都是O...
MYSQL 部分
[root@vms91 opt]#docker pull mysql //拉取mysql
[root@vms91 opt]# docker run -d -v /opt/database/:/var/lib/mysql --name database-wp -e MYSQL_ROOT_PASSWORD=redhat -e MYSQL_DATABASE=wordpress mysql //启动一个容器,后台运行,挂...