mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Removed pre-go1.17 build-tags with go fix;
go mod init
go fix -mod=readonly ./...
rm go.mod
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
409 B
Go
12 lines
409 B
Go
//go:build linux || freebsd
|
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import "github.com/docker/docker/container"
|
|
|
|
// excludeByIsolation is a platform specific helper function to support PS
|
|
// filtering by Isolation. This is a Windows-only concept, so is a no-op on Unix.
|
|
func excludeByIsolation(container *container.Snapshot, ctx *listContext) iterationAction {
|
|
return includeContainer
|
|
}
|