启动
2024年05月28日
一、认识
二、操作
2.1 启动 Centos
docker run -it centos:latest bash
运行 centos
并进入 centos
docker run -it centos:latest bash // 运行 centos 并进入 centos
如果想要退出 centos
并保持 centos
运行, 我们可以 control + p + q
退出。
2.2 提交 Centos 改变
通过 docker commit [容器ID] [tag]
提交对容器的改变
docker ps
docker commit [容器ID] centos:v1
此后, 我们再度 docker image ls
查看镜像列表时,此时会有我们自己 Tag
的 Centos
镜像版本。