linux_wiki:docker

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
linux_wiki:docker [2019/05/25 23:50]
127.0.0.1 external edit
linux_wiki:docker [2019/07/20 18:13]
billdozor [Docker: Storage]
Line 40: Line 40:
     * This thin logical volume will be used by the docker daemon directly to automatically setup a file system and allocate space for docker data and metadata.     * This thin logical volume will be used by the docker daemon directly to automatically setup a file system and allocate space for docker data and metadata.
     * **NOTE:** This space is NOT used for docker container image storage. (/var is the default)     * **NOTE:** This space is NOT used for docker container image storage. (/var is the default)
 +
 +\\
 +If you ever need to increase docker container data storage OR metadata storage, they can be resized individually.
 +  * Resize docker pool metadata example (increase by 1 GB)<code bash>lvextend --size +1G -n vglocal/lvdockerpool_tmeta</code>
 +  * Resize docker pool storage example (increase by 10 GB)<code bash>lvextend --size +10G -n vglocal/lvdockerpool_tdata</code>
  
 \\ \\
  • linux_wiki/docker.txt
  • Last modified: 2019/07/20 18:13
  • by billdozor