其他分享
首页 > 其他分享> > Docker 容器的数据管理

Docker 容器的数据管理

作者:互联网

 

 

 

 

一丶创建和管理卷

 

  1. 创建卷
    docker volume create my-vol
  2. 列出卷
    docker volume ls
  3. 查看卷属性
    docker volume inspect my-vol
  4. 删除卷
    docker volume rm my-vol
  5. 启动一个带有卷的容器
    docker run  --name test01 --mount source=my-vol01,target=/data/app/html   -d  nginx:latest
  6. 使用只读卷
    docker run  --name test02 --mount source=my-vol01,target=/data/app/html,readonly  -d  nginx:latest

二丶使用绑定挂载

  1. 创建绑定挂载的容器
    docker run -d   -it   --name test03  -v /data/app/html:/data/app/html  nginx:latest
  2. 配置只读权限
    docker run -d   -it   --name test04  -v /data/app/html:/data/app/html:ro  nginx:latest

三丶使用 tmpfs 挂载

  1. 创建tmpfs挂载的容器

    docker run -d -it --name test05 --mount type=tmpfs,destination=/data/app/html nginx:latest

 

标签:容器,--,app,html,数据管理,Docker,data,docker
来源: https://www.cnblogs.com/linjiangCN/p/16113755.html