2021-08-23 09:14:53 -04:00
|
|
|
//go:build linux || freebsd
|
2017-11-01 19:37:53 -04:00
|
|
|
// +build linux freebsd
|
2015-10-19 12:33:43 -04:00
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2015-10-19 12:33:43 -04:00
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
import "github.com/docker/docker/container"
|
|
|
|
|
2015-10-19 12:33:43 -04:00
|
|
|
// 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.
|
2017-02-22 18:01:46 -05:00
|
|
|
func excludeByIsolation(container *container.Snapshot, ctx *listContext) iterationAction {
|
2015-10-19 12:33:43 -04:00
|
|
|
return includeContainer
|
|
|
|
}
|