dokku-compose 0.6.2 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -581,6 +581,17 @@ var Builder = {
|
|
|
581
581
|
const dockerfileBulk = parseBulkReport(dockerfileRaw, "builder-dockerfile");
|
|
582
582
|
const appJsonBulk = parseBulkReport(appJsonRaw, "app-json");
|
|
583
583
|
const dockerOptsBulk = parseBulkReport(dockerOptsRaw, "docker-options");
|
|
584
|
+
if (process.env.DOKKU_COMPOSE_DEBUG) {
|
|
585
|
+
console.error("[debug] builderRaw length:", builderRaw.length);
|
|
586
|
+
console.error("[debug] dockerfileRaw length:", dockerfileRaw.length);
|
|
587
|
+
console.error("[debug] appJsonRaw length:", appJsonRaw.length);
|
|
588
|
+
console.error("[debug] dockerOptsRaw length:", dockerOptsRaw.length);
|
|
589
|
+
console.error("[debug] dockerfileRaw first 300:", JSON.stringify(dockerfileRaw.slice(0, 300)));
|
|
590
|
+
console.error("[debug] dockerOptsRaw first 300:", JSON.stringify(dockerOptsRaw.slice(0, 300)));
|
|
591
|
+
console.error("[debug] builderBulk keys:", [...builderBulk.keys()]);
|
|
592
|
+
console.error("[debug] dockerfileBulk keys:", [...dockerfileBulk.keys()]);
|
|
593
|
+
console.error("[debug] dockerOptsBulk keys:", [...dockerOptsBulk.keys()]);
|
|
594
|
+
}
|
|
584
595
|
const result = /* @__PURE__ */ new Map();
|
|
585
596
|
for (const app of builderBulk.keys()) {
|
|
586
597
|
result.set(app, buildConfigFromReports(
|