Fixed network search in Traefik Labels for the service

This commit is contained in:
Ron_Tayler
2025-04-12 22:02:27 +03:00
parent 1c470b8ba7
commit efee798880

View File

@@ -249,6 +249,11 @@ export const addDomainToCompose = async (
labels.unshift("traefik.enable=true");
}
labels.unshift(...httpLabels);
if (!compose.isolatedDeployment) {
if (!labels.includes("traefik.docker.network=dokploy-network")) {
labels.unshift("traefik.docker.network=dokploy-network");
}
}
}
if (!compose.isolatedDeployment) {