mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
site: use content adapters for cli reference
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
88
content/reference/cli/_content.gotmpl
Normal file
88
content/reference/cli/_content.gotmpl
Normal file
@@ -0,0 +1,88 @@
|
||||
{{- /*
|
||||
Content adapter for CLI reference pages.
|
||||
|
||||
Generates pages from YAML data files in site.Data, replacing the ~386 stub
|
||||
Markdown files that previously lived under content/reference/cli/docker/.
|
||||
|
||||
For each data file it creates a page at the command path (spaces → slashes).
|
||||
Files with `cname` (subcommands list) become Hugo sections; others become
|
||||
regular pages.
|
||||
|
||||
Skips:
|
||||
- Alias/shortcut commands — if any alias is longer (more words) than the
|
||||
command itself, a canonical version exists elsewhere (e.g. `docker ps`
|
||||
is a shortcut for `docker container ls`).
|
||||
- Hidden commands (hidden: true in the YAML).
|
||||
|
||||
Also creates 8 sidebar-redirect pages for common shortcuts (ps, run, …)
|
||||
so they still appear in the sidebar navigation.
|
||||
*/ -}}
|
||||
|
||||
{{- $folders := slice
|
||||
"engine-cli" "buildx" "compose-cli" "model-cli" "mcp-cli"
|
||||
"sandbox-cli" "offload-cli" "scout-cli" "desktop-cli"
|
||||
"init-cli" "debug-cli" "secrets-engine"
|
||||
-}}
|
||||
|
||||
{{- range $folder := $folders -}}
|
||||
{{- with index site.Data $folder -}}
|
||||
{{- range $name, $data := . -}}
|
||||
{{- /* Skip hidden commands */ -}}
|
||||
{{- if $data.hidden -}}
|
||||
{{- continue -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- /* Skip alias/shortcut commands: if any alias has more words than
|
||||
the command, a longer canonical form exists elsewhere. */ -}}
|
||||
{{- $cmdWords := len (split $data.command " ") -}}
|
||||
{{- $isAlias := false -}}
|
||||
{{- with $data.aliases -}}
|
||||
{{- range (split . ", ") -}}
|
||||
{{- if gt (len (split . " ")) $cmdWords -}}
|
||||
{{- $isAlias = true -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- if $isAlias -}}
|
||||
{{- continue -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- $path := replace $data.command " " "/" -}}
|
||||
{{- $kind := "page" -}}
|
||||
{{- with $data.cname -}}
|
||||
{{- $kind = "section" -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- $.AddPage (dict
|
||||
"path" $path
|
||||
"title" $data.command
|
||||
"kind" $kind
|
||||
"params" (dict "datafolder" $folder "datafile" $name)
|
||||
) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- /* Sidebar redirect pages for common shortcuts.
|
||||
These aren't rendered — they exist so the sidebar can display entries
|
||||
like "docker ps" linking to the canonical page. */ -}}
|
||||
{{- $redirects := dict
|
||||
"docker/ps" "/reference/cli/docker/container/ls/"
|
||||
"docker/run" "/reference/cli/docker/container/run/"
|
||||
"docker/exec" "/reference/cli/docker/container/exec/"
|
||||
"docker/build" "/reference/cli/docker/buildx/build/"
|
||||
"docker/images" "/reference/cli/docker/image/ls/"
|
||||
"docker/pull" "/reference/cli/docker/image/pull/"
|
||||
"docker/push" "/reference/cli/docker/image/push/"
|
||||
"docker/info" "/reference/cli/docker/system/info/"
|
||||
-}}
|
||||
|
||||
{{- range $path, $goto := $redirects -}}
|
||||
{{- $title := replace $path "/" " " -}}
|
||||
{{- $.AddPage (dict
|
||||
"path" $path
|
||||
"title" $title
|
||||
"params" (dict "sidebar" (dict "goto" $goto))
|
||||
"build" (dict "render" "link" "list" "always")
|
||||
) -}}
|
||||
{{- end -}}
|
||||
@@ -1,36 +0,0 @@
|
||||
---
|
||||
build:
|
||||
list: never
|
||||
publishResources: false
|
||||
render: never
|
||||
---
|
||||
|
||||
# About these files
|
||||
|
||||
The files in this directory are stub files which include the file
|
||||
`/_includes/cli.md`, which parses YAML files generated from the
|
||||
[`docker/cli`](https://github.com/docker/cli) repository. The YAML files
|
||||
are parsed into output files like
|
||||
</reference/cli/docker/build/>.
|
||||
|
||||
## How the output is generated
|
||||
|
||||
The output files are composed from two sources:
|
||||
|
||||
- The **Description** and **Usage** sections comes directly from
|
||||
the CLI source code in that repository.
|
||||
|
||||
- The **Extended Description** and **Examples** sections are pulled into the
|
||||
YAML from the files in [https://github.com/docker/cli/tree/master/docs/reference/commandline](https://github.com/docker/cli/tree/master/docs/reference/commandline) for Docker CLI commands and [https://github.com/docker/compose/tree/v2/docs/reference](https://github.com/docker/compose/tree/v2/docs/reference) for Docker Compose commands.
|
||||
Specifically, the Markdown inside the `## Description` and `## Examples`
|
||||
headings are parsed. Submit corrections to the text in those repositories.
|
||||
|
||||
## Updating the YAML files
|
||||
|
||||
The process for generating the YAML files is still in flux. Check with
|
||||
@thaJeztah. Be sure to generate the YAML files with the correct
|
||||
release branch of `docker/cli`, for example, the `19.03` branch.
|
||||
|
||||
After generating the YAML files, replace the YAML files in
|
||||
[https://github.com/docker/docs/tree/main/_data/engine-cli](https://github.com/docker/docs/tree/main/_data/engine-cli)
|
||||
with the newly-generated files. Submit a pull request.
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker
|
||||
title: docker
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/
|
||||
- /engine/reference/commandline/
|
||||
- /engine/reference/commandline/docker/
|
||||
- /engine/reference/commandline/cli/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_image_build
|
||||
title: docker build (legacy builder)
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
title: docker build
|
||||
build:
|
||||
render: never
|
||||
sidebar:
|
||||
goto: /reference/cli/docker/buildx/build/
|
||||
---
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_builder
|
||||
title: docker builder
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/builder/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_builder_prune
|
||||
title: docker builder prune
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/builder_prune/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx
|
||||
title: docker buildx
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_bake
|
||||
title: docker buildx bake
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_bake/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,23 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_build
|
||||
title: docker buildx build
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_build/
|
||||
- /edge/engine/reference/commandline/image_build/
|
||||
- /engine/reference/commandline/image_build/
|
||||
- /engine/reference/commandline/build/
|
||||
- /engine/reference/commandline/builder_build/
|
||||
- /reference/cli/docker/build/
|
||||
- /reference/cli/docker/builder/build/
|
||||
- /reference/cli/docker/image/build/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_create
|
||||
title: docker buildx create
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_create
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_dap
|
||||
title: docker buildx dap
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_dap/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_dap_attach
|
||||
title: docker buildx dap attach
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_dap_attach/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_dap_build
|
||||
title: docker buildx dap build
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_dap_build/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_debug
|
||||
title: docker buildx debug
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_debug-shell/
|
||||
- /engine/reference/commandline/buildx_debug/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_debug_build
|
||||
title: docker buildx debug build
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_debug_build/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_du
|
||||
title: docker buildx du
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_du/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history
|
||||
title: docker buildx history
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_export
|
||||
title: docker buildx history export
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_export/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_import
|
||||
title: docker buildx history import
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_import/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_inspect
|
||||
title: docker buildx history inspect
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_inspect/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_inspect_attachment
|
||||
title: docker buildx history inspect attachment
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_inspect_attachment/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_logs
|
||||
title: docker buildx history logs
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_logs/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_ls
|
||||
title: docker buildx history ls
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_ls/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_open
|
||||
title: docker buildx history open
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_open/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_rm
|
||||
title: docker buildx history rm
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_rm/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_history_trace
|
||||
title: docker buildx history trace
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_history_trace/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools
|
||||
title: docker buildx imagetools
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_imagetools/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools_create
|
||||
title: docker buildx imagetools create
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_imagetools_create/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools_inspect
|
||||
title: docker buildx imagetools inspect
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_imagetools_inspect/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_inspect
|
||||
title: docker buildx inspect
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_inspect/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_ls
|
||||
title: docker buildx ls
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_ls/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_policy
|
||||
title: docker buildx policy
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_policy_eval
|
||||
title: docker buildx policy eval
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_policy_test
|
||||
title: docker buildx policy test
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_prune
|
||||
title: docker buildx prune
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_prune/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_rm
|
||||
title: docker buildx rm
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_rm/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_stop
|
||||
title: docker buildx stop
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_stop/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_use
|
||||
title: docker buildx use
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_use/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: buildx
|
||||
datafile: docker_buildx_version
|
||||
title: docker buildx version
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/buildx_version/
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/buildx
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_checkpoint
|
||||
title: docker checkpoint
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/checkpoint/
|
||||
- /engine/reference/commandline/checkpoint/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_checkpoint_create
|
||||
title: docker checkpoint create
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/checkpoint_create/
|
||||
- /engine/reference/commandline/checkpoint_create/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_checkpoint_ls
|
||||
title: docker checkpoint ls
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/checkpoint_ls/
|
||||
- /engine/reference/commandline/checkpoint_ls/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_checkpoint_rm
|
||||
title: docker checkpoint rm
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/checkpoint_rm/
|
||||
- /engine/reference/commandline/checkpoint_rm/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose
|
||||
title: docker compose
|
||||
aliases:
|
||||
- /compose/reference/docker-compose/
|
||||
- /compose/reference/help/
|
||||
- /engine/reference/commandline/compose/
|
||||
- /compose/reference/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_alpha
|
||||
title: docker compose alpha
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_alpha
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_alpha_dry-run
|
||||
title: docker compose alpha dry-run
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_alpha_dry-run
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_alpha_scale
|
||||
title: docker compose alpha scale
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_alpha_scale/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_alpha_viz
|
||||
title: docker compose alpha viz
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_alpha_viz/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_attach
|
||||
title: docker compose attach
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_bridge
|
||||
title: docker compose bridge
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_bridge_convert
|
||||
title: docker compose bridge convert
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_bridge_transformations
|
||||
title: docker compose bridge transformations
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_bridge_transformations_create
|
||||
title: docker compose bridge transformations create
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_bridge_transformations_list
|
||||
title: docker compose bridge transformations list
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_build
|
||||
title: docker compose build
|
||||
aliases:
|
||||
- /compose/reference/build/
|
||||
- /engine/reference/commandline/compose_build/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_config
|
||||
title: docker compose config
|
||||
aliases:
|
||||
- /compose/reference/config/
|
||||
- /engine/reference/commandline/compose_convert/
|
||||
- /engine/reference/commandline/compose_config/
|
||||
- /compose/config/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_cp
|
||||
title: docker compose cp
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_cp/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_create
|
||||
title: docker compose create
|
||||
aliases:
|
||||
- /compose/reference/create/
|
||||
- /engine/reference/commandline/compose_create/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_down
|
||||
title: docker compose down
|
||||
aliases:
|
||||
- /compose/reference/down/
|
||||
- /engine/reference/commandline/compose_down/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_events
|
||||
title: docker compose events
|
||||
aliases:
|
||||
- /compose/reference/events/
|
||||
- /engine/reference/commandline/compose_events/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_exec
|
||||
title: docker compose exec
|
||||
aliases:
|
||||
- /compose/reference/exec/
|
||||
- /engine/reference/commandline/compose_exec/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_images
|
||||
title: docker compose images
|
||||
aliases:
|
||||
- /compose/reference/images/
|
||||
- /engine/reference/commandline/compose_images/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_kill
|
||||
title: docker compose kill
|
||||
aliases:
|
||||
- /compose/reference/kill/
|
||||
- /engine/reference/commandline/compose_kill/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_logs
|
||||
title: docker compose logs
|
||||
aliases:
|
||||
- /compose/reference/logs/
|
||||
- /engine/reference/commandline/compose_logs/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_ls
|
||||
title: docker compose ls
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_ls/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_pause
|
||||
title: docker compose pause
|
||||
aliases:
|
||||
- /compose/reference/pause/
|
||||
- /engine/reference/commandline/compose_pause/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_port
|
||||
title: docker compose port
|
||||
aliases:
|
||||
- /compose/reference/port/
|
||||
- /engine/reference/commandline/compose_port/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_ps
|
||||
title: docker compose ps
|
||||
aliases:
|
||||
- /compose/reference/ps/
|
||||
- /engine/reference/commandline/compose_ps/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_publish
|
||||
title: docker compose publish
|
||||
layout: cli
|
||||
aliases:
|
||||
- /reference/cli/docker/compose/alpha/publish/
|
||||
- /engine/reference/commandline/compose_alpha_publish/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_pull
|
||||
title: docker compose pull
|
||||
aliases:
|
||||
- /compose/reference/pull/
|
||||
- /engine/reference/commandline/compose_pull/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_push
|
||||
title: docker compose push
|
||||
aliases:
|
||||
- /compose/reference/push/
|
||||
- /engine/reference/commandline/compose_push/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_restart
|
||||
title: docker compose restart
|
||||
aliases:
|
||||
- /compose/reference/restart/
|
||||
- /engine/reference/commandline/compose_restart/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_rm
|
||||
title: docker compose rm
|
||||
aliases:
|
||||
- /compose/reference/rm/
|
||||
- /engine/reference/commandline/compose_rm/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_run
|
||||
title: docker compose run
|
||||
aliases:
|
||||
- /compose/reference/run/
|
||||
- /engine/reference/commandline/compose_run/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_start
|
||||
title: docker compose start
|
||||
aliases:
|
||||
- /compose/reference/start/
|
||||
- /engine/reference/commandline/compose_start/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_stop
|
||||
title: docker compose stop
|
||||
aliases:
|
||||
- /compose/reference/stop/
|
||||
- /engine/reference/commandline/compose_stop/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_top
|
||||
title: docker compose top
|
||||
aliases:
|
||||
- /compose/reference/top/
|
||||
- /engine/reference/commandline/compose_top/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_unpause
|
||||
title: docker compose unpause
|
||||
aliases:
|
||||
- /compose/reference/unpause/
|
||||
- /engine/reference/commandline/compose_unpause/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_up
|
||||
title: docker compose up
|
||||
aliases:
|
||||
- /compose/reference/up/
|
||||
- /compose/reference/scale/
|
||||
- /engine/reference/commandline/compose_up/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_version
|
||||
title: docker compose version
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_version/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_volumes
|
||||
title: docker compose volumes
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_wait
|
||||
title: docker compose wait
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_wait/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
datafolder: compose-cli
|
||||
datafile: docker_compose_watch
|
||||
title: docker compose watch
|
||||
layout: cli
|
||||
aliases:
|
||||
- /engine/reference/commandline/compose_watch/
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
here, you'll need to find the string by searching this repo:
|
||||
https://github.com/docker/compose
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_config
|
||||
title: docker config
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/config/
|
||||
- /engine/reference/commandline/config/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_config_create
|
||||
title: docker config create
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/config_create/
|
||||
- /engine/reference/commandline/config_create/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_config_inspect
|
||||
title: docker config inspect
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/config_inspect/
|
||||
- /engine/reference/commandline/config_inspect/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_config_ls
|
||||
title: docker config ls
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/config_ls/
|
||||
- /engine/reference/commandline/config_ls/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_config_rm
|
||||
title: docker config rm
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/config_rm/
|
||||
- /engine/reference/commandline/config_rm/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container
|
||||
title: docker container
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container/
|
||||
- /engine/reference/commandline/container/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_attach
|
||||
title: docker container attach
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_attach/
|
||||
- /engine/reference/commandline/attach/
|
||||
- /engine/reference/commandline/container_attach/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_commit
|
||||
title: docker container commit
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_commit/
|
||||
- /engine/reference/commandline/container_commit/
|
||||
- /engine/reference/commandline/commit/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_cp
|
||||
title: docker container cp
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_cp/
|
||||
- /engine/reference/commandline/container_cp/
|
||||
- /engine/reference/commandline/cp/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_create
|
||||
title: docker container create
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_create/
|
||||
- /engine/reference/commandline/container_create/
|
||||
- /engine/reference/commandline/create/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_diff
|
||||
title: docker container diff
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_diff/
|
||||
- /engine/reference/commandline/container_diff/
|
||||
- /engine/reference/commandline/diff/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,29 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_exec
|
||||
title: docker container exec
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_exec/
|
||||
- /engine/reference/commandline/container_exec/
|
||||
- /engine/reference/commandline/exec/
|
||||
- /reference/cli/docker/exec/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
> **Introducing Docker Debug**
|
||||
>
|
||||
> To easily get a debug shell into any container, use `docker debug`. Docker
|
||||
> Debug is a replacement for debugging with `docker exec`. With it, you can get
|
||||
> a shell into any container or image, even slim ones, without modifications.
|
||||
> Plus, you can bring along your favorite debugging tools in its customizable
|
||||
> toolbox.
|
||||
>
|
||||
> Explore [Docker Debug](../debug.md) now.
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_export
|
||||
title: docker container export
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_export/
|
||||
- /engine/reference/commandline/container_export/
|
||||
- /engine/reference/commandline/export/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_inspect
|
||||
title: docker container inspect
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_inspect/
|
||||
- /engine/reference/commandline/container_inspect/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_kill
|
||||
title: docker container kill
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_kill/
|
||||
- /engine/reference/commandline/container_kill/
|
||||
- /engine/reference/commandline/kill/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_container_logs
|
||||
title: docker container logs
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_logs/
|
||||
- /engine/reference/commandline/container_logs/
|
||||
- /engine/reference/commandline/logs/
|
||||
- /reference/cli/docker/logs/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user