blob: 89a44de16d01bc45faa0af02f9afb9e6371b3c7c [file] [log] [blame]
//go:build linux || freebsd
package daemon
import "github.com/moby/moby/v2/daemon/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
}