fix: throw error if traefik container creation fails for a reason other than port

This commit is contained in:
Khiet Tam Nguyen
2025-05-20 15:28:37 +10:00
parent 17a26353b6
commit 2fa2e76e2e

View File

@@ -139,6 +139,8 @@ export const initializeTraefik = async ({
const newContainer = docker.getContainer(containerName);
await newContainer.start();
console.log("Traefik container started successfully after retry");
} else {
throw error;
}
}
} catch (error) {