dokku-compose 0.6.2 → 0.6.3
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 +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -581,6 +581,14 @@ 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
|
+
const app0 = [...builderBulk.keys()][0];
|
|
586
|
+
console.error("[debug] builderBulk keys:", [...builderBulk.keys()]);
|
|
587
|
+
console.error("[debug] dockerfileBulk keys:", [...dockerfileBulk.keys()]);
|
|
588
|
+
console.error("[debug] dockerfileBulk[" + app0 + "]:", JSON.stringify(dockerfileBulk.get(app0)));
|
|
589
|
+
console.error("[debug] dockerOptsRaw first 200:", dockerOptsRaw.slice(0, 200));
|
|
590
|
+
console.error("[debug] dockerOptsBulk keys:", [...dockerOptsBulk.keys()]);
|
|
591
|
+
}
|
|
584
592
|
const result = /* @__PURE__ */ new Map();
|
|
585
593
|
for (const app of builderBulk.keys()) {
|
|
586
594
|
result.set(app, buildConfigFromReports(
|