mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-27 07:31:46 +01:00
feat: group containers by dev.dozzle.group label (#4043)
This commit is contained in:
@@ -80,7 +80,11 @@ export class Container {
|
||||
}
|
||||
|
||||
get namespace() {
|
||||
return this.labels["com.docker.stack.namespace"] || this.labels["com.docker.compose.project"];
|
||||
return (
|
||||
this.labels["dev.dozzle.group"] ||
|
||||
this.labels["com.docker.stack.namespace"] ||
|
||||
this.labels["com.docker.compose.project"]
|
||||
);
|
||||
}
|
||||
|
||||
get customGroup() {
|
||||
|
||||
Reference in New Issue
Block a user