Complete the command to set the storage driver to overlay2 when starting the Docker daemon.
dockerd --storage-driver=[1]The overlay2 driver is the recommended storage driver for modern Linux kernels. The command dockerd --storage-driver=overlay2 starts the Docker daemon using this driver.
Complete the Docker daemon configuration file snippet to specify the storage driver as btrfs.
{
"storage-driver": "[1]"
}Setting "storage-driver": "btrfs" in the Docker daemon JSON config file tells Docker to use the Btrfs storage driver.
Fix the error in the command to start Docker with devicemapper storage driver.
dockerd --storage-driver=[1]The devicemapper driver requires specific setup but can be set by dockerd --storage-driver=devicemapper. This fixes errors caused by missing or wrong driver names.
Fill both blanks to create a Docker daemon config snippet that sets the storage driver to overlay2 and enables experimental features.
{
"storage-driver": "[1]",
"experimental": [2]
}The config sets "storage-driver": "overlay2" and enables experimental features with "experimental": true.
Fill all three blanks to create a Docker daemon config snippet that sets the storage driver to devicemapper, disables live-restore, and sets the log level to info.
{
"storage-driver": "[1]",
"live-restore": [2],
"log-level": "[3]"
}This config sets the storage driver to devicemapper, disables live-restore by setting it to false, and sets the log level to info.