`; resultsHTML += results .map((item) => { let excerpt = item.excerpt; if (excerpt.length > 200) { excerpt = excerpt.substring(0, 200); } return `
${item.meta.title}

…${excerpt}…

`; }) .join(""); if (resultsLength > 5) { resultsHTML += ``; } searchBarResults.innerHTML = resultsHTML; } } searchBarInput.addEventListener("input", search); if (window.heap !== undefined) { searchBarResults.addEventListener("click", function (event) { if (event.target.tagName === "A" && event.target.closest(".link")) { const searchQuery = event.target.getAttribute("data-query"); const resultIndex = event.target.getAttribute("data-index"); const url = new URL(event.target.href); const properties = { docs_search_target_path: url.pathname, docs_search_target_title: event.target.textContent, docs_search_query_text: searchQuery, docs_search_target_index: resultIndex, docs_search_source_path: window.location.pathname, docs_search_source_title: document.title, }; heap.track("Docs - Search - Click - Result Link", properties); } }); } });

docker compose config

DescriptionParse, resolve and render compose file in canonical format
Usagedocker compose config [OPTIONS] [SERVICE...]

Description

docker compose config renders the actual data model to be applied on the Docker Engine. It merges the Compose files set by -f flags, resolves variables in the Compose file, and expands short-notation into the canonical format.

Options

OptionDefaultDescription
--environmentPrint environment used for interpolation.
--formatFormat the output. Values: [yaml | json]
--hashPrint the service config hash, one per line.
--imagesPrint the image names, one per line.
--lock-image-digestsProduces an override file with image digests
--modelsPrint the model names, one per line.
--networksPrint the network names, one per line.
--no-consistencyDon't check model consistency - warning: may produce invalid Compose output
--no-env-resolutionDon't resolve service env files
--no-interpolateDon't interpolate environment variables
--no-normalizeDon't normalize compose model
--no-path-resolutionDon't resolve file paths
-o, --outputSave to file (default to stdout)
--profilesPrint the profile names, one per line.
-q, --quietOnly validate the configuration, don't print anything
--resolve-image-digestsPin image tags to digests
--servicesPrint the service names, one per line.
--variablesPrint model variables and default values.
--volumesPrint the volume names, one per line.