Merge pull request #13542 from kvasdopil/freebsd-work

Make docker build on FreeBSD
Upstream-commit: 75f8bdd970e5355a6238e7b41a9f1aee9cd3f890
Component: engine
This commit is contained in:
Jessie Frazelle
2015-07-29 15:15:37 -07:00
25 changed files with 154 additions and 12 deletions

View File

@ -0,0 +1,8 @@
package graphdriver
var (
// Slice of drivers that should be used in an order
priority = []string{
"zfs",
}
)

View File

@ -1,4 +1,4 @@
// +build !linux,!windows
// +build !linux,!windows,!freebsd
package graphdriver

View File

@ -1,4 +1,4 @@
// +build linux
// +build linux freebsd
package zfs