mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix: remove duplicate prefix
This commit is contained in:
@@ -73,12 +73,7 @@ export const writeDomainsToCompose = async (
|
|||||||
if (!domains.length) {
|
if (!domains.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let composeConverted = await addDomainToCompose(compose, domains);
|
const composeConverted = await addDomainToCompose(compose, domains);
|
||||||
|
|
||||||
if (compose.randomize && composeConverted) {
|
|
||||||
const result = randomizeSpecificationFile(composeConverted, compose.suffix);
|
|
||||||
composeConverted = result;
|
|
||||||
}
|
|
||||||
|
|
||||||
const path = getComposePath(compose);
|
const path = getComposePath(compose);
|
||||||
const composeString = dump(composeConverted, { lineWidth: 1000 });
|
const composeString = dump(composeConverted, { lineWidth: 1000 });
|
||||||
|
|||||||
Reference in New Issue
Block a user