docker: use overlay driver on XFS

We missed this back when 4.1 came out, but now here lies a conundrum:
what is docker's behavior if someone has an existing XFS volume? This
isn't a normal setup for us but it is possible someone has done it.
This commit is contained in:
Michael Marineau 2015-09-16 17:59:21 -07:00
parent 0904da4b0e
commit 4b54ac4b49

View File

@ -46,7 +46,7 @@ select_docker_driver() {
btrfs) btrfs)
export DOCKER_DRIVER=btrfs export DOCKER_DRIVER=btrfs
;; ;;
ext4|tmpfs) # As of 3.18 ext4|tmpfs|xfs) # As of 4.1
export DOCKER_DRIVER=overlay export DOCKER_DRIVER=overlay
;; ;;
*) *)