Merge pull request #4016 from Dokploy/4003-first-application-deploy-to-swarm-worker-fails-with-unauthorized-no-such-image-retry-succeeds

fix: handle optional authConfig in mechanizeDockerContainer function
This commit is contained in:
Mauricio Siu
2026-03-17 00:18:14 -06:00
committed by GitHub
+5 -1
View File
@@ -182,7 +182,11 @@ export const mechanizeDockerContainer = async (
});
} catch (error) {
console.log(error);
await docker.createService(settings);
if (authConfig) {
await docker.createService(authConfig, settings);
} else {
await docker.createService(settings);
}
}
};