From 4b54ac4b499dcb3a4752d8c557dc99b2da47426c Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 16 Sep 2015 17:59:21 -0700 Subject: [PATCH] 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. --- .../coreos-overlay/app-emulation/docker/files/dockerd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd index adb0f2a9f1..6fd5b011fe 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd @@ -46,7 +46,7 @@ select_docker_driver() { btrfs) export DOCKER_DRIVER=btrfs ;; - ext4|tmpfs) # As of 3.18 + ext4|tmpfs|xfs) # As of 4.1 export DOCKER_DRIVER=overlay ;; *)