docker container core technology

  • Container volume data (volume) also take up disk space, you can delete the volume failed with the following command:
[root@localhost]# sudo docker volume rm $(docker volume ls -qf dangling=true)
  • docker setting capacity
bind mount docker managed volume
volume path Any path
Impact on existing mount point Hide and replace volume
Whether to support a single file stand by
Access control It can be set to read-only, read-write access by default
Portability Weak, binding and host path

Guess you like

Origin www.cnblogs.com/doraman/p/11627448.html