Fix XFS 'ftype' option typo

The required XFS option is called ftype, not fstype:

```
xfs_info / | grep ftype
naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
```
This commit is contained in:
Mark Janssen 2018-12-08 17:41:58 +01:00 committed by GitHub
parent 89fb3b017f
commit 8783864b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -152,14 +152,14 @@ With regard to Docker, the backing filesystem is the filesystem where
`/var/lib/docker/` is located. Some storage drivers only work with specific
backing filesystems.
| Storage driver | Supported backing filesystems |
| Storage driver | Supported backing filesystems |
|:----------------------|:------------------------------|
| `overlay2`, `overlay` | `xfs` with fstype=1, `ext4` |
| `overlay2`, `overlay` | `xfs` with ftype=1, `ext4` |
| `aufs` | `xfs`, `ext4` |
| `devicemapper` | `direct-lvm` |
| `btrfs` | `btrfs` |
| `zfs` | `zfs` |
| `vfs` | any filesystem |
| `vfs` | any filesystem |
## Other considerations