Docker基础命令

Posted by kyle on February 13, 2020

容器生命周期管理

命令 描述 示例
create 创建镜像 创建名字为hello的httpd镜像:docker create –name hello httpd
start/stop/restart 启动、停止、重启镜像 docker start hello
run 创建并启动一个镜像,相当于组合了create、start命令 docker run -d centos /bin/bash -c “while true; do sleep 1; echo Hello; done”
kill 杀掉一个运行中的容器 docker kill hello
rm 删除一个或多个容器 docker rm hello
pause/unpause 暂停、解除暂停容器 docker pause hello
exec 在运行的容器中执行命令 docker exec -it hello