docker 的安装
yum update
sudo yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
安装docker:sudo yum install docker-ce docker-ce-cli containerd.io
启动docker:sudo systemctl start docker
停止docker:systemctl stop docker
查看镜像:docker images
搜索镜像:docker search name
选择你需要的版本下载
docker镜像下载:docker pull name
如: docker pull centos:centos7.7.1804
镜像的删除:docker rmi name/id
导入镜像:docker import /centos.tar name
(centos.tar 备份的镜像名称 name 导入后的镜像名称)
docker 运行镜像为容器
docker run -it centos /bin/bash
参数说明:
-i: 交互式操作。
-t: 终端。
centos: centos 镜像
/bin/bash:放在镜像名后的是命令,这里我们希望有个交互式 Shell,因此用的是 /bin/bash。
退出容器:exit;
容器的运行与停止
运行容器:docker start name/id
停止容器:docker stop name/id
查看运行中的容器:docker ps
查看全部容器:docker ps -a
容器的删除,备份
容器的删除:docker rm name/id
(注意:容器需要先停止才能删除)
容器的备份:docker export $container_id > 容器快照名
(这里备份出来的文件是一个镜像)
cp 文件或文件夹到容器当中
docker cp file/floder 容器id:/url
暂时就到这儿,想起来再补!
原文链接: http://www.clhardstone.cn/2021/02/24/docker%20%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4%E5%8F%8A%E5%AE%9E%E8%B7%B5/
博客地址: www.clhardstone.cn
- 本文作者: Cayden
- 本文链接: http://example.com/2021/02/24/docker 常用命令及实践/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!