This commit is contained in:
Andras Bacsai 2023-02-21 13:24:23 +01:00
parent d9362f09d8
commit 81f885311d

View File

@ -75,12 +75,15 @@ export async function startService(request: FastifyRequest<ServiceStartStop>, fa
}
const customVolumes = await prisma.servicePersistentStorage.findMany({ where: { serviceId: id } })
let volumes = new Set()
console.log(template.services[s], arm)
console.log(template.services[s].volumes)
if (arm && template.services[s]?.volumesArm?.length > 0) {
template.services[s].volumesArm.forEach(v => volumes.add(v))
} else {
if (template.services[s]?.volumes?.length > 0) {
template.services[s].volumes.forEach(v => volumes.add(v))
}
}
// Workaround: old plausible analytics service wrong volume id name
if (service.type === 'plausibleanalytics' && service.plausibleAnalytics?.id) {
console.log('old plausible analytics service')