diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-04-07 21:45:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 21:45:32 +0200 |
commit | 9e1e82b0f3ce57f95f21fc09c70e2711e5105997 (patch) | |
tree | bc53c1bc8e96353d66606439912352abe94df179 /src/components | |
parent | 000a46ee88742081ce8683db50f8d277b1d4f3da (diff) | |
parent | e2ebf9973bec9884154093d6bd7a9688261e6fed (diff) | |
download | homer-9e1e82b0f3ce57f95f21fc09c70e2711e5105997.tar.gz homer-9e1e82b0f3ce57f95f21fc09c70e2711e5105997.tar.zst homer-9e1e82b0f3ce57f95f21fc09c70e2711e5105997.zip |
Merge pull request #402 from Zareix/feature/portainer-environments
Portainer service - Select environments
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/services/Portainer.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/services/Portainer.vue b/src/components/services/Portainer.vue index 5f3954f..d101ecc 100644 --- a/src/components/services/Portainer.vue +++ b/src/components/services/Portainer.vue | |||
@@ -83,6 +83,12 @@ export default { | |||
83 | 83 | ||
84 | let containers = []; | 84 | let containers = []; |
85 | for (let endpoint of this.endpoints) { | 85 | for (let endpoint of this.endpoints) { |
86 | if ( | ||
87 | this.item.environments && | ||
88 | !this.item.environments.includes(endpoint.Name) | ||
89 | ) { | ||
90 | continue; | ||
91 | } | ||
86 | const uri = `/api/endpoints/${endpoint.Id}/docker/containers/json?all=1`; | 92 | const uri = `/api/endpoints/${endpoint.Id}/docker/containers/json?all=1`; |
87 | const endpointContainers = await this.fetch(uri, { headers }).catch( | 93 | const endpointContainers = await this.fetch(uri, { headers }).catch( |
88 | (e) => { | 94 | (e) => { |