
Leave in btrfs by default, but add go build tags to exclude it. `go build -tags containerd_no_btrfs` will leave that driver out. As the current containerd/btrfs code needs link to libbtrfs*.so, but not all distros provide it. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
8 lines
178 B
Go
8 lines
178 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/containerd/containerd/linux"
|
|
_ "github.com/containerd/containerd/metrics/cgroups"
|
|
_ "github.com/containerd/containerd/snapshot/overlay"
|
|
)
|