Files
docker-cli/components/engine/layer/ro_layer_unix.go
T
John Howard 33860da10b LCOW: Re-coalesce stores
Signed-off-by: John Howard <jhoward@microsoft.com>

The re-coalesces the daemon stores which were split as part of the
original LCOW implementation.

This is part of the work discussed in https://github.com/moby/moby/issues/34617,
in particular see the document linked to in that issue.
Upstream-commit: ce8e529e182bde057cdfafded62c210b7293b8ba
Component: engine
2018-01-18 08:29:19 -08:00

10 lines
109 B
Go

// +build !windows
package layer
import "runtime"
func (rl *roLayer) OS() string {
return runtime.GOOS
}