一、常用命令
容器生命周期管理
- run 运行一个容器
- start/stop/restart 启动/停止/重启
- kill 杀死一个容器
- rm 删除一个容器
- pause/unpause
- create
- exec 运行一个命令
容器操作
容器rootfs命令
镜像仓库
本地镜像管理
info|version
二、常用命令使用详情补充
1、杀掉所有运行中的容器 : docker kill $(docker ps -a -q)
2、运行一个容器:docker run -itd --name test05 -p8083:80 --memory=200M --cpus=1 --mount type=bind,src=/tmp/,dst=/usr/share/nginx/html nginx
限制内存为200,cpu1核,挂载为bind 端口为8083
3、查看最新运行的一个docker容器: docker ps -l
4、进入一个运行中的容器:docker exec -it test_nginx /bin/bash
5、拷贝一个文件到运行中的容器:dockcer cp test.txt dockername:/
6、手工导出一个镜像和加载镜像:sudo docker save busybox-1 > /home/save.tar(导出镜像) docker export <CONTAINER ID> > /home/export.tar(导出容器)
导入:docker load < /home/save.tar
7、docker inspect 描述一个容器
8、创建一个镜像 docker create test01 -f .
原文地址:https://www.cnblogs.com/xiajq/p/11185076.html
时间: 2024-10-08 21:03:21