
Storage | Docker Docs
Storage mount options. Docker supports the following types of storage mounts for storing data outside of the writable layer of the container: Volume mounts; Bind mounts; tmpfs mounts; …
Storage drivers | Docker Docs
Docker uses storage drivers to store image layers, and to store data in the writable layer of a container. The container's writable layer doesn't persist after the container is deleted, but is …
OverlayFS storage driver | Docker Docs
Docker is now using the overlay2 storage driver and has automatically created the overlay mount with the required lowerdir, upperdir, merged, and workdir constructs. Continue reading for …
Select a storage driver | Docker Docs - Docker Documentation
Docker supports several storage drivers, using a pluggable architecture. The storage driver controls how images and containers are stored and managed on your Docker host. After you …
Persisting container data | Docker Docs - Docker Documentation
Volumes are a storage mechanism that provide the ability to persist data beyond the lifecycle of an individual container. Think of it like providing a shortcut or symlink from inside the container …
Volumes | Docker Docs - Docker Documentation
Volumes are persistent data stores for containers, created and managed by Docker. You can create a volume explicitly using the docker volume create command, or Docker can create a …
BTRFS storage driver | Docker Docs
Docker's btrfs storage driver leverages many Btrfs features for image and container management. Among these features are block-level operations, thin provisioning, copy-on-write snapshots, …
Bind mounts | Docker Docs
Docker Desktop has built-in mechanisms that transparently handle bind mounts, allowing you to share native host filesystem paths with containers running in the virtual machine. Containers …
dockerd | Docker Docs
Daemon storage-driver. On Linux, the Docker daemon has support for several different image layer storage drivers: overlay2, fuse-overlayfs, btrfs, and zfs. overlay2 is the preferred storage …
ZFS storage driver | Docker Docs
See all storage options for each storage driver in the daemon reference documentation. Save and close the file, and restart Docker. How the zfs storage driver works. ZFS uses the following …