summaryrefslogtreecommitdiff
path: root/daemon/list_unix.go
blob: af86834a10a0d37257b9ee56be17410cb628b9b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build linux || freebsd
// +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
}