docker


  • 简介
  • 目录大纲
  • 最新文档
  • 文集下载

    docker数据持久化

    运行是是否有挂载vlome卷到 宿主机 查看已挂载的磁盘卷信息 docker inspect 容器名 | grep Mounts -A 10

    xyp - 2022年8月11日 11:51


    docker安装nginx并配置SSL证书

    安装docker yum update yum install epel-release -y yum install docker-io -y systemctl start docker docker info //检查安装结果 拉取nginx镜像 docker pull nginx 查看镜像 docker images 拷贝nginx.conf配置文件或者在本地centos系统安装了ng……

    xyp - 2022年4月2日 10:06


    docker常见命令操作

    列出所有状态的容器 docker ps -a 上面列表格式比较长,看起来有些不舒服。可以简单处理下,只查看重要的几列 ``` docker ps -a |awk -F"[ ]{2}*" '{print $1"\t\t"$3"\t\t"$5"\t"$NF}' ``` 列出正在运行的容器 docker ps 运行容器 docker run id/name docker run -d id/……

    xyp - 2022年3月24日 20:24


    docker镜像常用操作

    查看镜像列表: shell docker images 搜索镜像 使用命令 docker search 查找官网镜像,如centos docker search centos 拉取镜像 docker pull centos 拉取国外镜像尝试使用国内源 腾讯: https://cloud.tencent.com/document/product/213/8623 https://cloud.……

    xyp - 2022年3月24日 12:33



    xyp