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
10 lines
109 B
Go
10 lines
109 B
Go
// +build !windows
|
|
|
|
package layer
|
|
|
|
import "runtime"
|
|
|
|
func (rl *roLayer) OS() string {
|
|
return runtime.GOOS
|
|
}
|