fix: handle optional authConfig in mechanizeDockerContainer function

- Updated the mechanizeDockerContainer function to conditionally use authConfig when creating a Docker service, ensuring proper service creation based on authentication settings.
This commit is contained in:
Mauricio Siu
2026-03-17 00:17:51 -06:00
parent 6a1bedb90f
commit e7af2c0ebd
+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);
}
}
};