From f43f784ad4a36306ed95b6f2f201dd95bb397f60 Mon Sep 17 00:00:00 2001 From: Oussama Douhou Date: Sat, 10 Jan 2026 11:45:29 +0100 Subject: [PATCH] fix: use string values for memory/CPU limits (Dokploy API requirement) --- src/orchestrator/production-deployer.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/orchestrator/production-deployer.ts b/src/orchestrator/production-deployer.ts index dad6c26..4819e7b 100644 --- a/src/orchestrator/production-deployer.ts +++ b/src/orchestrator/production-deployer.ts @@ -278,10 +278,10 @@ export class ProductionDeployer { dockerImage: config.dockerImage, sourceType: 'docker', registryId: config.registryId, - memoryLimit: 2048, - memoryReservation: 1024, - cpuLimit: 2, - cpuReservation: 0.5, + memoryLimit: '2048', + memoryReservation: '1024', + cpuLimit: '2', + cpuReservation: '0.5', }); state.progress = 55;