|
@@ -234,6 +234,11 @@ func includeContainerInList(container *Container, ctx *listContext) iterationAct
|
|
return excludeContainer
|
|
return excludeContainer
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // Do not include container if the isolation mode doesn't match
|
|
|
|
+ if excludeContainer == excludeByIsolation(container, ctx) {
|
|
|
|
+ return excludeContainer
|
|
|
|
+ }
|
|
|
|
+
|
|
// Do not include container if it's in the list before the filter container.
|
|
// Do not include container if it's in the list before the filter container.
|
|
// Set the filter container to nil to include the rest of containers after this one.
|
|
// Set the filter container to nil to include the rest of containers after this one.
|
|
if ctx.beforeContainer != nil {
|
|
if ctx.beforeContainer != nil {
|