From 22007426aac9a5a7d20e272793e94c8c822b268c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 2 Nov 2022 22:44:46 +0100 Subject: [PATCH] fix migration --- apps/api/src/lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/lib.ts b/apps/api/src/lib.ts index e74041e1c..8aabb2334 100644 --- a/apps/api/src/lib.ts +++ b/apps/api/src/lib.ts @@ -461,7 +461,7 @@ async function createVolumes(service: any, template: any) { for (const volume of template.services[s].volumes) { const volumeName = volume.split(':')[0] const volumePath = volume.split(':')[1] - const volumeService = service.id + const volumeService = s volumes.push(`${volumeName}@@@${volumePath}@@@${volumeService}`) } }