Merge pull request #1930 from nktnet1/fix-traefik-failing-silently

fix: throw error if traefik container creation fails for a reason other than port taken
This commit is contained in:
Mauricio Siu 2025-06-01 15:42:00 -06:00 committed by GitHub
commit 98aabd7bd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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) {