diff --git a/daemon/containerd/service.go b/daemon/containerd/service.go index aa2f58c38f..b95f089d1c 100644 --- a/daemon/containerd/service.go +++ b/daemon/containerd/service.go @@ -4,6 +4,7 @@ import ( "context" "github.com/containerd/containerd" + "github.com/containerd/containerd/plugin" "github.com/docker/docker/api/types" "github.com/docker/docker/container" "github.com/docker/docker/daemon/images" @@ -64,7 +65,10 @@ func (i *ImageService) GetLayerByID(cid string) (layer.RWLayer, error) { // LayerStoreStatus returns the status for each layer store // called from info.go func (i *ImageService) LayerStoreStatus() [][2]string { - return [][2]string{} + // TODO(thaJeztah) do we want to add more details about the driver here? + return [][2]string{ + {"driver-type", string(plugin.SnapshotPlugin)}, + } } // GetLayerMountID returns the mount ID for a layer