fix(traefik): improve error handling in container startup

Log Traefik container startup errors instead of throwing, preventing potential deployment interruptions
This commit is contained in:
Mauricio Siu
2025-03-09 01:14:45 -06:00
parent 19f574e168
commit 988e5cb23e

View File

@@ -121,7 +121,7 @@ export const initializeTraefik = async ({
const newContainer = docker.getContainer(containerName);
await newContainer.start();
} catch (error) {
throw error;
console.log(error);
}
};