Merge pull request #7433 from BretFisher/patch-3

remove aufs "default storage driver" statements
This commit is contained in:
Maria Bermudez 2018-09-27 16:48:10 -07:00 committed by GitHub
commit 0fc8bae7db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -143,8 +143,8 @@ Status: Downloaded newer image for ubuntu:15.04
Each of these layers is stored in its own directory inside the Docker host's
local storage area. To examine the layers on the filesystem, list the contents
of `/var/lib/docker/<storage-driver>/layers/`. This example uses `aufs`, which
is the default storage driver:
of `/var/lib/docker/<storage-driver>/layers/`. This example uses the `aufs`
storage driver:
```bash
$ ls /var/lib/docker/aufs/layers
@ -292,8 +292,8 @@ layer. This means that the writable layer is as small as possible.
When an existing file in a container is modified, the storage driver performs a
copy-on-write operation. The specifics steps involved depend on the specific
storage driver. For the default `aufs` driver and the `overlay` and `overlay2`
drivers, the copy-on-write operation follows this rough sequence:
storage driver. For the `aufs`, `overlay`, and `overlay2` drivers, the
copy-on-write operation follows this rough sequence:
* Search through the image layers for the file to update. The process starts
at the newest layer and works down to the base layer one layer at a time.