@flowfuse/driver-docker 2.18.0 → 2.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/docker.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/docker.js
CHANGED
|
@@ -135,7 +135,7 @@ const createContainer = async (project, domain) => {
|
|
|
135
135
|
stackName = stackName + ':latest'
|
|
136
136
|
}
|
|
137
137
|
for (const cont of containerList) {
|
|
138
|
-
if (cont.RepoTags
|
|
138
|
+
if (cont.RepoTags?.includes(stackName)) {
|
|
139
139
|
containerFound = true
|
|
140
140
|
break
|
|
141
141
|
}
|
|
@@ -217,7 +217,7 @@ const createMQttTopicAgent = async (broker) => {
|
|
|
217
217
|
stackName = stackName + ':latest'
|
|
218
218
|
}
|
|
219
219
|
for (const cont of containerList) {
|
|
220
|
-
if (cont.RepoTags
|
|
220
|
+
if (cont.RepoTags?.includes(stackName)) {
|
|
221
221
|
containerFound = true
|
|
222
222
|
break
|
|
223
223
|
}
|