跳到主要内容

启动

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 查看镜像列表时,此时会有我们自己 TagCentos 镜像版本。

2.3 执行 Centos 命令

2.4 将 Centos 改变打包

docker save -o centosV1.tar centos:v1centos 镜像指定的 v1 版本打包为 tar

2.5 执行 Centos 命令并输出

docker exec -it [容器ID] 命令 在容器 ID 中执行命令, 并输出。比如: docker exec -it [Centos 容器ID] ls /Centos容器中执行 ls / 并输出。