Docker - Docker Root Dir (Docker Data Storage Path)

Card Puncher Data Processing

About

The docker root dir is the root path where all data docker is stored.

Management

Get the location

$ docker info | grep -i "Docker Root Dir"
Docker Root Dir: /mnt/sda1/var/lib/docker

List the content

docker-machine ssh 
  • And select it
sudo ls /mnt/sda1/var/lib/docker
aufs        builder     containers  image       network     plugins     swarm       tmp         trust       volumes

where:





Discover More
Card Puncher Data Processing
Docker - Data Persistence

mount a file or directory of the host into a container. volume: mount a file or directory of the host machine into a container located at /var/lib/docker/volumes/ : mount a file or directory of the...
Card Puncher Data Processing
Docker - Image

This page is the container image in Docker. OCI is the standardized container format used by Docker Docker stores downloaded images on the Docker host at the Docker Root Dir location where:...
Card Puncher Data Processing
Docker - Volume Mount

in Docker. A volume is one type of mount in docker. Volumes are one of the way of persisting data between container execution. They are file store on the host where you can persist data generated by...



Share this page:
Follow us:
Task Runner