mirror of https://github.com/docker/docs.git
Go back to small /edge (#2736)
* Go back to small /edge * Update site front page Add info about Editions Reorganize components Update headings * Move logic of fetching content to a script * Add v1.28 API * Add info about versioned API
This commit is contained in:
parent
4a6b360229
commit
10be60a80f
108
Dockerfile
108
Dockerfile
|
@ -18,115 +18,17 @@ COPY . md_source
|
|||
|
||||
## Branch to pull from, per ref doc
|
||||
## To get master from svn the svn branch needs to be 'trunk'. To get a branch from svn it needs to be 'branches/branchname'
|
||||
|
||||
# Engine
|
||||
ENV ENGINE_SVN_BRANCH="branches/17.03.x"
|
||||
ENV ENGINE_BRANCH="17.03.x"
|
||||
|
||||
# Distribution
|
||||
ENV DISTRIBUTION_SVN_BRANCH="branches/release/2.6"
|
||||
ENV DISTRIBUTION_BRANCH="release/2.6"
|
||||
|
||||
RUN svn co https://github.com/docker/docker/$ENGINE_SVN_BRANCH/docs/extend md_source/engine/extend \
|
||||
&& wget -O md_source/engine/api/v1.18.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.18.md \
|
||||
&& wget -O md_source/engine/api/v1.19.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.19.md \
|
||||
&& wget -O md_source/engine/api/v1.20.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.20.md \
|
||||
&& wget -O md_source/engine/api/v1.21.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.21.md \
|
||||
&& wget -O md_source/engine/api/v1.22.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.22.md \
|
||||
&& wget -O md_source/engine/api/v1.23.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.23.md \
|
||||
&& wget -O md_source/engine/api/v1.24.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.24.md \
|
||||
&& wget -O md_source/engine/api/version-history.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/version-history.md \
|
||||
&& wget -O md_source/engine/reference/glossary.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/glossary.md \
|
||||
&& wget -O md_source/engine/reference/builder.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/builder.md \
|
||||
&& wget -O md_source/engine/reference/run.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/run.md \
|
||||
&& wget -O md_source/engine/reference/commandline/cli.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/commandline/cli.md \
|
||||
&& wget -O md_source/engine/deprecated.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/deprecated.md \
|
||||
&& svn co https://github.com/docker/distribution/$DISTRIBUTION_SVN_BRANCH/docs/spec md_source/registry/spec \
|
||||
&& rm md_source/registry/spec/api.md.tmpl \
|
||||
&& wget -O md_source/registry/configuration.md https://raw.githubusercontent.com/docker/distribution/$DISTRIBUTION_BRANCH/docs/configuration.md \
|
||||
&& rm -rf md_source/apidocs/cloud-api-source \
|
||||
&& rm -rf md_source/tests \
|
||||
&& wget -O md_source/engine/api/v1.25/swagger.yaml https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml \
|
||||
&& wget -O md_source/engine/api/v1.26/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml \
|
||||
&& wget -O md_source/engine/api/v1.27/swagger.yaml https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/api/swagger.yaml \
|
||||
RUN md_source/_scripts/fetch-upstream-resources.sh \
|
||||
&& jekyll build -s md_source -d target --config md_source/_config.yml \
|
||||
&& rm -rf target/apidocs/layouts \
|
||||
&& find target -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="https://docs.docker.com/#href="/#g' \
|
||||
&& rm -rf md_source
|
||||
|
||||
# Next, build edge
|
||||
|
||||
# Copy master into target directory (skipping files / folders in .dockerignore)
|
||||
# These files represent the current docs
|
||||
COPY . md_source
|
||||
|
||||
# Move built html into md_source directory so we can reuse the target directory
|
||||
# to hold the static output.
|
||||
# Pull reference docs from upstream locations, then build the master docs
|
||||
# into static HTML in the "target" directory using Jekyll
|
||||
# then nuke the md_source directory.
|
||||
|
||||
## Branch to pull from, per ref doc
|
||||
## To get master from svn the svn branch needs to be 'trunk'. To get a branch from svn it needs to be 'branches/branchname'
|
||||
ENV ENGINE_SVN_BRANCH="branches/17.04.x"
|
||||
ENV ENGINE_BRANCH="17.04.x"
|
||||
ENV DISTRIBUTION_SVN_BRANCH="branches/release/2.6"
|
||||
ENV DISTRIBUTION_BRANCH="release/2.6"
|
||||
|
||||
RUN svn co https://github.com/docker/docker/$ENGINE_SVN_BRANCH/docs/extend md_source/engine/extend \
|
||||
&& wget -O md_source/engine/api/v1.18.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.18.md \
|
||||
&& wget -O md_source/engine/api/v1.19.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.19.md \
|
||||
&& wget -O md_source/engine/api/v1.20.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.20.md \
|
||||
&& wget -O md_source/engine/api/v1.21.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.21.md \
|
||||
&& wget -O md_source/engine/api/v1.22.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.22.md \
|
||||
&& wget -O md_source/engine/api/v1.23.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.23.md \
|
||||
&& wget -O md_source/engine/api/v1.24.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.24.md \
|
||||
&& wget -O md_source/engine/api/version-history.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/version-history.md \
|
||||
&& wget -O md_source/engine/reference/glossary.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/glossary.md \
|
||||
&& wget -O md_source/engine/reference/builder.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/builder.md \
|
||||
&& wget -O md_source/engine/reference/run.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/run.md \
|
||||
&& wget -O md_source/engine/reference/commandline/cli.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/commandline/cli.md \
|
||||
&& wget -O md_source/engine/deprecated.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/deprecated.md \
|
||||
&& svn co https://github.com/docker/distribution/$DISTRIBUTION_SVN_BRANCH/docs/spec md_source/registry/spec \
|
||||
&& rm md_source/registry/spec/api.md.tmpl \
|
||||
&& wget -O md_source/registry/configuration.md https://raw.githubusercontent.com/docker/distribution/$DISTRIBUTION_BRANCH/docs/configuration.md \
|
||||
&& rm -rf md_source/apidocs/cloud-api-source \
|
||||
&& rm -rf md_source/tests \
|
||||
&& wget -O md_source/engine/api/v1.25/swagger.yaml https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml \
|
||||
&& wget -O md_source/engine/api/v1.26/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml \
|
||||
&& wget -O md_source/engine/api/v1.27/swagger.yaml https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/api/swagger.yaml \
|
||||
&& jekyll build -s md_source -d target/edge --config md_source/_config-edge.yml \
|
||||
&& rm -rf target/apidocs/layouts \
|
||||
&& find target -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="https://docs.docker.com/#href="/#g' \
|
||||
# Replace / rewrite some URLs so that links in the edge directory go to the correct
|
||||
# location. Note that the order in which these replacements are done is
|
||||
# important. Changing the order may result in replacements being done
|
||||
# multiple times.
|
||||
# First, remove the domain from URLs that include the domain
|
||||
&& VER="edge" \
|
||||
&& BASEURL="$VER/" \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="http://docs-stage.docker.com/#href="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="https://docs-stage.docker.com/#src="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="https://docs.docker.com/#href="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="https://docs.docker.com/#src="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="http://docs.docker.com/#href="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="http://docs.docker.com/#src="/#g' \
|
||||
\
|
||||
# Substitute https:// for schema-less resources (src="//analytics.google.com")
|
||||
# We're replacing them to prevent them being seen as absolute paths below
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="//#href="https://#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="//#src="https://#g' \
|
||||
\
|
||||
# And some archive versions already have URLs starting with '/version/'
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="/'"$BASEURL"'#href="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="/'"$BASEURL"'#src="/#g' \
|
||||
\
|
||||
# Archived versions 1.7 and under use some absolute links, and v1.10 uses
|
||||
# "relative" links to sources (href="./css/"). Remove those to make them
|
||||
# work :)
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="\./#href="/#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="\./#src="/#g' \
|
||||
\
|
||||
# Create permalinks for archived versions
|
||||
\
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="/#href="/'"$BASEURL"'#g' \
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="/#src="/'"$BASEURL"'#g' \
|
||||
# Fix 'Back to Stable Docs' URL
|
||||
&& find target/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#<li id="stable-cta"><a href="/edge/">Back to Stable docs</a></li>#<li id="stable-cta"><a href="/">Back to Stable docs</a></li>#g' \
|
||||
&& rm -rf md_source
|
173
_config-edge.yml
173
_config-edge.yml
|
@ -1,173 +0,0 @@
|
|||
name: Docker CE Edge Documentation
|
||||
markdown: kramdown
|
||||
kramdown:
|
||||
input: GFM
|
||||
html_to_native: true
|
||||
hard_wrap: false
|
||||
syntax_highlighter: rouge
|
||||
toc_levels: 2..3
|
||||
incremental: true
|
||||
permalink: pretty
|
||||
safe: false
|
||||
lsi: false
|
||||
url: https://docs.docker.com/edge/
|
||||
keep_files: ["v1.4", "v1.5", "v1.6", "v1.7", "v1.8", "v1.9", "v1.10", "v1.11", "v1.12", "v1.13"]
|
||||
edge: true # set to true if the next expected release is going to the edge channel
|
||||
|
||||
gems:
|
||||
- jekyll-redirect-from
|
||||
- jekyll-seo-tag
|
||||
- jekyll-relative-links
|
||||
|
||||
webrick:
|
||||
headers:
|
||||
Cache-Control: 600
|
||||
|
||||
defaults:
|
||||
-
|
||||
scope:
|
||||
path: ""
|
||||
type: "pages"
|
||||
values:
|
||||
layout: docs
|
||||
defaultassignee: johndmulhausen
|
||||
enginebranch: 1.13.x
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
tree: true
|
||||
- scope:
|
||||
path: "compose"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
- scope:
|
||||
path: "cs-engine"
|
||||
values:
|
||||
assignee: "joaofnfernandes"
|
||||
- scope:
|
||||
path: "datacenter"
|
||||
values:
|
||||
assignee: "joaofnfernandes"
|
||||
- scope:
|
||||
path: "docker-cloud"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
- scope:
|
||||
path: "docker-for-mac"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
- scope:
|
||||
path: "docker-for-windows"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
- scope:
|
||||
path: "docker-hub"
|
||||
values:
|
||||
assignee: "johndmulhausen"
|
||||
- scope:
|
||||
path: "docker-store"
|
||||
values:
|
||||
assignee: "johndmulhausen"
|
||||
- scope:
|
||||
path: "engine"
|
||||
values:
|
||||
assignee: "mstanleyjones"
|
||||
- scope:
|
||||
path: "kitematic"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
- scope:
|
||||
path: "machine"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
- scope:
|
||||
path: "notary"
|
||||
values:
|
||||
assignee: "johndmulhausen"
|
||||
- scope:
|
||||
path: "registry"
|
||||
values:
|
||||
assignee: "joaofnfernandes"
|
||||
- scope:
|
||||
path: "swarm"
|
||||
values:
|
||||
assignee: "mstanleyjones"
|
||||
- scope:
|
||||
path: "toolbox"
|
||||
values:
|
||||
assignee: "londoncalling"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter"
|
||||
values:
|
||||
ucp_latest_image: "docker/ucp:2.1.2"
|
||||
dtr_latest_image: "docker/dtr:2.2.3"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter/dtr/2.2"
|
||||
values:
|
||||
ucp_version: "2.1"
|
||||
dtr_version: "2.2"
|
||||
docker_image: "docker/dtr:2.2.3"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter/dtr/2.1"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
ucp_version: "2.0"
|
||||
dtr_version: "2.1"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter/dtr/2.0"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
ucp_version: "1.1"
|
||||
dtr_version: "2.0"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter/ucp/2.1"
|
||||
values:
|
||||
ucp_version: "2.1"
|
||||
dtr_version: "2.2"
|
||||
docker_image: "docker/ucp:2.1.2"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter/ucp/2.0"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
ucp_version: "2.0"
|
||||
dtr_version: "2.1"
|
||||
docker_image: "docker/ucp:2.0.3"
|
||||
-
|
||||
scope:
|
||||
path: "datacenter/ucp/1.1"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
ucp_version: "1.1"
|
||||
dtr_version: "2.0"
|
||||
-
|
||||
scope:
|
||||
path: "apidocs/v1.3.3"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
-
|
||||
scope:
|
||||
path: "apidocs/v1.4.0"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
-
|
||||
scope:
|
||||
path: "apidocs/v2.0.0"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
-
|
||||
scope:
|
||||
path: "apidocs/v2.0.1"
|
||||
values:
|
||||
hide_from_sitemap: true
|
||||
|
||||
# Assets
|
||||
#
|
||||
# We specify the directory for Jekyll so we can use @imports.
|
||||
sass:
|
||||
sass_dir: _scss
|
||||
style: :compressed
|
|
@ -12,7 +12,6 @@ safe: false
|
|||
lsi: false
|
||||
url: https://docs.docker.com
|
||||
keep_files: ["v1.4", "v1.5", "v1.6", "v1.7", "v1.8", "v1.9", "v1.10", "v1.11", "v1.12", "v1.13"]
|
||||
edge: false # set to true if the next expected release is going to the edge channel
|
||||
|
||||
gems:
|
||||
- jekyll-redirect-from
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
- archive:
|
||||
name: edge
|
||||
image: docs/docker.github.io:latest
|
||||
- archive:
|
||||
name: v17.03
|
||||
image: docs/docker.github.io:latest
|
||||
|
|
343
_data/toc.yaml
343
_data/toc.yaml
|
@ -22,6 +22,13 @@ guides:
|
|||
section:
|
||||
- path: /engine/installation/
|
||||
title: Install Docker
|
||||
- sectiontitle: Docker Edge
|
||||
section:
|
||||
- path: /edge/
|
||||
title: Overview
|
||||
- path: /edge/engine/reference/commandline/docker/
|
||||
title: Docker Edge CLI reference
|
||||
nosync: true
|
||||
- path: /docker-for-mac/install/
|
||||
title: Docker for Mac
|
||||
- path: /docker-for-windows/install/
|
||||
|
@ -482,10 +489,12 @@ reference:
|
|||
section:
|
||||
- path: /engine/api/
|
||||
title: Overview
|
||||
- path: /engine/api/getting-started/
|
||||
title: Getting started
|
||||
- path: /engine/api/get-started/
|
||||
title: Get started
|
||||
- path: /engine/api/sdks/
|
||||
title: SDKs
|
||||
- path: /engine/api/v1.28/
|
||||
title: v1.28 Reference
|
||||
- path: /engine/api/v1.27/
|
||||
title: v1.27 Reference
|
||||
- sectiontitle: Previous API versions
|
||||
|
@ -838,6 +847,336 @@ reference:
|
|||
title: docker volume rm
|
||||
- path: /engine/reference/commandline/wait/
|
||||
title: docker wait
|
||||
- title: Edge Daemon CLI reference (dockerd)
|
||||
path: /edge/engine/reference/commandline/dockerd/
|
||||
- sectiontitle: Docker Edge Engine (docker) CLI
|
||||
section:
|
||||
- path: /edge/engine/reference/run/
|
||||
title: Docker run reference
|
||||
- path: /edge/engine/reference/commandline/cli/
|
||||
title: Use the Docker command line
|
||||
- path: /edge/engine/reference/commandline/docker/
|
||||
title: docker (base command)
|
||||
- path: /edge/engine/reference/commandline/attach/
|
||||
title: docker attach
|
||||
- path: /edge/engine/reference/commandline/build/
|
||||
title: docker build
|
||||
- sectiontitle: docker checkpoint *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/checkpoint/
|
||||
title: docker checkpoint
|
||||
- path: /edge/engine/reference/commandline/checkpoint_create/
|
||||
title: docker checkpoint create
|
||||
- path: /edge/engine/reference/commandline/checkpoint_create/
|
||||
title: docker checkpoint create
|
||||
- path: /edge/engine/reference/commandline/checkpoint_ls/
|
||||
title: docker checkpoint ls
|
||||
- path: /edge/engine/reference/commandline/checkpoint_rm/
|
||||
title: docker checkpoint rm
|
||||
- path: /edge/engine/reference/commandline/commit/
|
||||
title: docker commit
|
||||
- sectiontitle: docker container *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/container/
|
||||
title: docker container
|
||||
- path: /edge/engine/reference/commandline/container_attach/
|
||||
title: docker container attach
|
||||
- path: /edge/engine/reference/commandline/container_commit/
|
||||
title: docker container commit
|
||||
- path: /edge/engine/reference/commandline/container_cp/
|
||||
title: docker container cp
|
||||
- path: /edge/engine/reference/commandline/container_create/
|
||||
title: docker container create
|
||||
- path: /edge/engine/reference/commandline/container_diff/
|
||||
title: docker container diff
|
||||
- path: /edge/engine/reference/commandline/container_exec/
|
||||
title: docker container exec
|
||||
- path: /edge/engine/reference/commandline/container_export/
|
||||
title: docker container export
|
||||
- path: /edge/engine/reference/commandline/container_inspect/
|
||||
title: docker container inspect
|
||||
- path: /edge/engine/reference/commandline/container_kill/
|
||||
title: docker container kill
|
||||
- path: /edge/engine/reference/commandline/container_logs/
|
||||
title: docker container logs
|
||||
- path: /edge/engine/reference/commandline/container_ls/
|
||||
title: docker container ls
|
||||
- path: /edge/engine/reference/commandline/container_pause/
|
||||
title: docker container pause
|
||||
- path: /edge/engine/reference/commandline/container_port/
|
||||
title: docker container port
|
||||
- path: /edge/engine/reference/commandline/container_prune/
|
||||
title: docker container prune
|
||||
- path: /edge/engine/reference/commandline/container_rename/
|
||||
title: docker container rename
|
||||
- path: /edge/engine/reference/commandline/container_restart/
|
||||
title: docker container restart
|
||||
- path: /edge/engine/reference/commandline/container_rm/
|
||||
title: docker container rm
|
||||
- path: /edge/engine/reference/commandline/container_run/
|
||||
title: docker container run
|
||||
- path: /edge/engine/reference/commandline/container_start/
|
||||
title: docker container start
|
||||
- path: /edge/engine/reference/commandline/container_stats/
|
||||
title: docker container stats
|
||||
- path: /edge/engine/reference/commandline/container_stop/
|
||||
title: docker container stop
|
||||
- path: /edge/engine/reference/commandline/container_top/
|
||||
title: docker container top
|
||||
- path: /edge/engine/reference/commandline/container_unpause/
|
||||
title: docker container unpause
|
||||
- path: /edge/engine/reference/commandline/container_update/
|
||||
title: docker container update
|
||||
- path: /edge/engine/reference/commandline/container_wait/
|
||||
title: docker container wait
|
||||
- path: /edge/engine/reference/commandline/cp/
|
||||
title: docker cp
|
||||
- path: /edge/engine/reference/commandline/create/
|
||||
title: docker create
|
||||
- path: /edge/engine/reference/commandline/deploy/
|
||||
title: docker deploy
|
||||
- path: /edge/engine/reference/commandline/diff/
|
||||
title: docker diff
|
||||
- path: /edge/engine/reference/commandline/events/
|
||||
title: docker events
|
||||
- path: /edge/engine/reference/commandline/exec/
|
||||
title: docker exec
|
||||
- path: /edge/engine/reference/commandline/export/
|
||||
title: docker export
|
||||
- path: /edge/engine/reference/commandline/history/
|
||||
title: docker history
|
||||
- sectiontitle: docker image *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/image/
|
||||
title: docker image
|
||||
- path: /edge/engine/reference/commandline/image_build/
|
||||
title: docker image build
|
||||
- path: /edge/engine/reference/commandline/image_history/
|
||||
title: docker image history
|
||||
- path: /edge/engine/reference/commandline/image_import/
|
||||
title: docker image import
|
||||
- path: /edge/engine/reference/commandline/image_inspect/
|
||||
title: docker image inspect
|
||||
- path: /edge/engine/reference/commandline/image_load/
|
||||
title: docker image load
|
||||
- path: /edge/engine/reference/commandline/image_ls/
|
||||
title: docker image ls
|
||||
- path: /edge/engine/reference/commandline/image_prune/
|
||||
title: docker image prune
|
||||
- path: /edge/engine/reference/commandline/image_pull/
|
||||
title: docker image pull
|
||||
- path: /edge/engine/reference/commandline/image_push/
|
||||
title: docker image push
|
||||
- path: /edge/engine/reference/commandline/image_rm/
|
||||
title: docker image rm
|
||||
- path: /edge/engine/reference/commandline/image_save/
|
||||
title: docker image save
|
||||
- path: /edge/engine/reference/commandline/image_tag/
|
||||
title: docker image tag
|
||||
- path: /edge/engine/reference/commandline/images/
|
||||
title: docker images
|
||||
- path: /edge/engine/reference/commandline/import/
|
||||
title: docker import
|
||||
- path: /edge/engine/reference/commandline/info/
|
||||
title: docker info
|
||||
- path: /edge/engine/reference/commandline/inspect/
|
||||
title: docker inspect
|
||||
- path: /edge/engine/reference/commandline/kill/
|
||||
title: docker kill
|
||||
- path: /edge/engine/reference/commandline/load/
|
||||
title: docker load
|
||||
- path: /edge/engine/reference/commandline/login/
|
||||
title: docker login
|
||||
- path: /edge/engine/reference/commandline/logout/
|
||||
title: docker logout
|
||||
- path: /edge/engine/reference/commandline/logs/
|
||||
title: docker logs
|
||||
- sectiontitle: docker network *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/network/
|
||||
title: docker network
|
||||
- path: /edge/engine/reference/commandline/network_connect/
|
||||
title: docker network connect
|
||||
- path: /edge/engine/reference/commandline/network_create/
|
||||
title: docker network create
|
||||
- path: /edge/engine/reference/commandline/network_disconnect/
|
||||
title: docker network disconnect
|
||||
- path: /edge/engine/reference/commandline/network_inspect/
|
||||
title: docker network inspect
|
||||
- path: /edge/engine/reference/commandline/network_ls/
|
||||
title: docker network ls
|
||||
- path: /edge/engine/reference/commandline/network_prune/
|
||||
title: docker network prune
|
||||
- path: /edge/engine/reference/commandline/network_rm/
|
||||
title: docker network rm
|
||||
- sectiontitle: docker node *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/node/
|
||||
title: docker node
|
||||
- path: /edge/engine/reference/commandline/node_demote/
|
||||
title: docker node demote
|
||||
- path: /edge/engine/reference/commandline/node_inspect/
|
||||
title: docker node inspect
|
||||
- path: /edge/engine/reference/commandline/node_ls/
|
||||
title: docker node ls
|
||||
- path: /edge/engine/reference/commandline/node_promote/
|
||||
title: docker node promote
|
||||
- path: /edge/engine/reference/commandline/node_ps/
|
||||
title: docker node ps
|
||||
- path: /edge/engine/reference/commandline/node_rm/
|
||||
title: docker node rm
|
||||
- path: /edge/engine/reference/commandline/node_update/
|
||||
title: docker node update
|
||||
- path: /edge/engine/reference/commandline/pause/
|
||||
title: docker pause
|
||||
- sectiontitle: docker plugin *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/plugin/
|
||||
title: docker plugin
|
||||
- path: /edge/engine/reference/commandline/plugin_create/
|
||||
title: docker plugin create
|
||||
- path: /edge/engine/reference/commandline/plugin_disable/
|
||||
title: docker plugin disable
|
||||
- path: /edge/engine/reference/commandline/plugin_enable/
|
||||
title: docker plugin enable
|
||||
- path: /edge/engine/reference/commandline/plugin_inspect/
|
||||
title: docker plugin inspect
|
||||
- path: /edge/engine/reference/commandline/plugin_install/
|
||||
title: docker plugin install
|
||||
- path: /edge/engine/reference/commandline/plugin_ls/
|
||||
title: docker plugin ls
|
||||
- path: /edge/engine/reference/commandline/plugin_rm/
|
||||
title: docker plugin rm
|
||||
- path: /edge/engine/reference/commandline/plugin_set/
|
||||
title: docker plugin set
|
||||
- path: /edge/engine/reference/commandline/plugin_upgrade/
|
||||
title: docker plugin upgrade
|
||||
- path: /edge/engine/reference/commandline/port/
|
||||
title: docker port
|
||||
- path: /edge/engine/reference/commandline/ps/
|
||||
title: docker ps
|
||||
- path: /edge/engine/reference/commandline/pull/
|
||||
title: docker pull
|
||||
- path: /edge/engine/reference/commandline/push/
|
||||
title: docker push
|
||||
- path: /edge/engine/reference/commandline/rename/
|
||||
title: docker rename
|
||||
- path: /edge/engine/reference/commandline/restart/
|
||||
title: docker restart
|
||||
- path: /edge/engine/reference/commandline/rm/
|
||||
title: docker rm
|
||||
- path: /edge/engine/reference/commandline/rmi/
|
||||
title: docker rmi
|
||||
- path: /edge/engine/reference/commandline/run/
|
||||
title: docker run
|
||||
- path: /edge/engine/reference/commandline/save/
|
||||
title: docker save
|
||||
- path: /edge/engine/reference/commandline/search/
|
||||
title: docker search
|
||||
- sectiontitle: docker secret *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/secret/
|
||||
title: docker secret
|
||||
- path: /edge/engine/reference/commandline/secret_create/
|
||||
title: docker secret create
|
||||
- path: /edge/engine/reference/commandline/secret_inspect/
|
||||
title: docker secret inspect
|
||||
- path: /edge/engine/reference/commandline/secret_ls/
|
||||
title: docker secret ls
|
||||
- path: /edge/engine/reference/commandline/secret_rm/
|
||||
title: docker secret rm
|
||||
- sectiontitle: docker service *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/service/
|
||||
title: docker service
|
||||
- path: /edge/engine/reference/commandline/service_create/
|
||||
title: docker service create
|
||||
- path: /edge/engine/reference/commandline/service_inspect/
|
||||
title: docker service inspect
|
||||
- path: /edge/engine/reference/commandline/service_logs/
|
||||
title: docker service logs
|
||||
- path: /edge/engine/reference/commandline/service_ls/
|
||||
title: docker service ls
|
||||
- path: /edge/engine/reference/commandline/service_ps/
|
||||
title: docker service ps
|
||||
- path: /edge/engine/reference/commandline/service_rm/
|
||||
title: docker service rm
|
||||
- path: /edge/engine/reference/commandline/service_scale/
|
||||
title: docker service scale
|
||||
- path: /edge/engine/reference/commandline/service_update/
|
||||
title: docker service update
|
||||
- sectiontitle: docker stack *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/stack/
|
||||
title: docker stack
|
||||
- path: /edge/engine/reference/commandline/stack_deploy/
|
||||
title: docker stack deploy
|
||||
- path: /edge/engine/reference/commandline/stack_ps/
|
||||
title: docker stack ps
|
||||
- path: /edge/engine/reference/commandline/stack_rm/
|
||||
title: docker stack rm
|
||||
- path: /edge/engine/reference/commandline/stack_services/
|
||||
title: docker stack services
|
||||
- path: /edge/engine/reference/commandline/start/
|
||||
title: docker start
|
||||
- path: /edge/engine/reference/commandline/stats/
|
||||
title: docker stats
|
||||
- path: /edge/engine/reference/commandline/stop/
|
||||
title: docker stop
|
||||
- sectiontitle: docker swarm *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/swarm/
|
||||
title: docker swarm
|
||||
- path: /edge/engine/reference/commandline/swarm_init/
|
||||
title: docker swarm init
|
||||
- path: /edge/engine/reference/commandline/swarm_join-token/
|
||||
title: docker swarm join-token
|
||||
- path: /edge/engine/reference/commandline/swarm_join/
|
||||
title: docker swarm join
|
||||
- path: /edge/engine/reference/commandline/swarm_leave/
|
||||
title: docker swarm leave
|
||||
- path: /edge/engine/reference/commandline/swarm_unlock-key/
|
||||
title: docker swarm unlock-key
|
||||
- path: /edge/engine/reference/commandline/swarm_unlock/
|
||||
title: docker swarm unlock
|
||||
- path: /edge/engine/reference/commandline/swarm_update/
|
||||
title: docker swarm update
|
||||
- sectiontitle: docker system *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/system/
|
||||
title: docker system
|
||||
- path: /edge/engine/reference/commandline/system_df/
|
||||
title: docker system df
|
||||
- path: /edge/engine/reference/commandline/system_events/
|
||||
title: docker system events
|
||||
- path: /edge/engine/reference/commandline/system_info/
|
||||
title: docker system info
|
||||
- path: /edge/engine/reference/commandline/system_prune/
|
||||
title: docker system prune
|
||||
- path: /edge/engine/reference/commandline/tag/
|
||||
title: docker tag
|
||||
- path: /edge/engine/reference/commandline/top/
|
||||
title: docker top
|
||||
- path: /edge/engine/reference/commandline/unpause/
|
||||
title: docker unpause
|
||||
- path: /edge/engine/reference/commandline/update/
|
||||
title: docker update
|
||||
- path: /edge/engine/reference/commandline/version/
|
||||
title: docker version
|
||||
- sectiontitle: docker volume *
|
||||
section:
|
||||
- path: /edge/engine/reference/commandline/volume_create/
|
||||
title: docker volume create
|
||||
- path: /edge/engine/reference/commandline/volume_inspect/
|
||||
title: docker volume inspect
|
||||
- path: /edge/engine/reference/commandline/volume_ls/
|
||||
title: docker volume ls
|
||||
- path: /edge/engine/reference/commandline/volume_prune/
|
||||
title: docker volume prune
|
||||
- path: /edge/engine/reference/commandline/volume_rm/
|
||||
title: docker volume rm
|
||||
- path: /edge/engine/reference/commandline/wait/
|
||||
title: docker wait
|
||||
- title: Machine (docker-machine) CLI
|
||||
path: /machine/reference/
|
||||
nosync: true
|
||||
|
|
|
@ -83,5 +83,8 @@
|
|||
{{ site.data[include.datafolder][include.datafile].examples }}
|
||||
|
||||
{% endif %}
|
||||
{% else %}
|
||||
|
||||
The include.datafolder or include.datafile was not set.
|
||||
|
||||
{% endif %}
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
{% assign section = include.section %}
|
||||
|
||||
{% if section == "option" %}
|
||||
> **Edge only**: This option is only available in Docker CE Edge versions. See [Docker CE Edge](/edge/index.md).
|
||||
|
||||
{% elsif section == "options" %}
|
||||
> **Edge only**: These options are only available in Docker CE Edge versions. See [Docker CE Edge](/edge/index.md).
|
||||
|
||||
{% elsif section == "page" %}
|
||||
> **Edge only**: This topic is only applicable to Docker CE Edge versions. See [Docker CE Edge](/edge/index.md).
|
||||
|
||||
{% elsif section == "cliref" %}
|
||||
> **Edge only**: This is the CLI reference for Docker CE Edge versions. Some of these options may not be available
|
||||
> to Docker CE stable or Docker EE. You can
|
||||
> [view the stable version of this CLI reference]({{ page.url | replace:"/edge/", "/"}})
|
||||
> or [learn about Docker CE Edge](/edge/index.md).
|
||||
|
||||
{% endif %}
|
||||
|
|
@ -21,8 +21,3 @@
|
|||
{% endif %}
|
||||
<li id="{{ section.node }}"{{ activeCSS }}><a href="{{ section.path }}">{{ section.title }}</a></li>
|
||||
{% endfor %}
|
||||
{% if site.edge == true %}
|
||||
<li id="stable-cta"><a href="/">Back to Stable docs</a></li>
|
||||
{% else %}
|
||||
<li id="edge-cta"><a href="/edge/">Try the CE Edge docs</a></li>
|
||||
{% endif %}
|
||||
|
|
|
@ -0,0 +1,43 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Fetches upstream resources from docker/docker and docker/distribution
|
||||
# before handing off the site to Jekyll to build
|
||||
# Relies on the following environment variables which are usually set by
|
||||
# the Dockerfile. Uncomment them here to override for debugging
|
||||
|
||||
# Engine stable
|
||||
ENGINE_SVN_BRANCH="branches/17.03.x"
|
||||
ENGINE_BRANCH="17.03.x"
|
||||
|
||||
# Distribution
|
||||
DISTRIBUTION_SVN_BRANCH="branches/release/2.6"
|
||||
DISTRIBUTION_BRANCH="release/2.6"
|
||||
|
||||
# Directories to get via SVN. We use this because you can't use git to clone just a portion of a repository
|
||||
svn co https://github.com/docker/docker/"$ENGINE_SVN_BRANCH"/docs/extend md_source/engine/extend || (echo "Failed engine/extend download" && exit -1)
|
||||
svn co https://github.com/docker/docker/"$ENGINE_SVN_BRANCH"/docs/api md_source/engine/api || (echo "Failed engine/api download" && exit -1) # This will only get you the old API MD files 1.18 through 1.24
|
||||
svn co https://github.com/docker/distribution/"$DISTRIBUTION_SVN_BRANCH"/docs/spec md_source/registry/spec || (echo "Failed registry/spec download" && exit -1)
|
||||
|
||||
|
||||
# Get the Engine APIs that are in Swagger
|
||||
# Be careful with the locations on Github for these
|
||||
wget -O md_source/engine/api/v1.25/swagger.yaml https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml || (echo "Failed 1.25 swagger download" && exit -1)
|
||||
wget -O md_source/engine/api/v1.26/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml || (echo "Failed 1.26 swagger download" && exit -1)
|
||||
wget -O md_source/engine/api/v1.27/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.1-ce/api/swagger.yaml || (echo "Failed 1.27 swagger download" && exit -1)
|
||||
|
||||
# Get the Edge API Swagger (we only keep the latest one of these
|
||||
# When you change this you need to make sure to copy the previous
|
||||
# directory into a new one in the docs git and change the index.html
|
||||
wget -O md_source/engine/api/v1.28/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.04.0-ce/api/swagger.yaml || (echo "Failed 1.28 swagger download or the 1.28 directory doesn't exist" && exit -1)
|
||||
|
||||
# Get a few one-off files that we use directly from upstream
|
||||
wget -O md_source/engine/reference/builder.md https://raw.githubusercontent.com/docker/docker/"$ENGINE_BRANCH"/docs/reference/builder.md || (echo "Failed engine/reference/builder.md download" && exit -1)
|
||||
wget -O md_source/engine/reference/run.md https://raw.githubusercontent.com/docker/docker/"$ENGINE_BRANCH"/docs/reference/run.md || (echo "Failed engine/reference/run.md download" && exit -1)
|
||||
wget -O md_source/engine/reference/commandline/cli.md https://raw.githubusercontent.com/docker/docker/"$ENGINE_BRANCH"/docs/reference/commandline/cli.md || (echo "Failed engine/reference/commandline/cli.md download" && exit -1)
|
||||
wget -O md_source/engine/deprecated.md https://raw.githubusercontent.com/docker/docker/"$ENGINE_BRANCH"/docs/deprecated.md || (echo "Failed engine/deprecated.md download" && exit -1)
|
||||
wget -O md_source/registry/configuration.md https://raw.githubusercontent.com/docker/distribution/"$DISTRIBUTION_BRANCH"/docs/configuration.md || (echo "Failed registry/configuration.md download" && exit -1)
|
||||
|
||||
# Remove things we don't want in the build
|
||||
rm md_source/registry/spec/api.md.tmpl
|
||||
rm -rf md_source/apidocs/cloud-api-source
|
||||
rm -rf md_source/tests
|
|
@ -0,0 +1,29 @@
|
|||
# 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/docker`](https://github.com/docker/docker) repository. The YAML files
|
||||
are parsed into output files like
|
||||
[https://docs.docker.com/engine/reference/commandline/build/](https://docs.docker.com/engine/reference/commandline/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/docker/tree/master/docs/reference/commandline](https://github.com/docker/docker/tree/master/docs/reference/commandline)
|
||||
Specifically, the Markdown inside the `## Description` and `## Examples`
|
||||
headings are parsed. Please submit corrections to the text in that repository.
|
||||
|
||||
# Updating the YAML files
|
||||
|
||||
The process for generating the YAML files is still in flux. Check with
|
||||
@thajestah or @frenchben. Be sure to generate the YAML files with the correct
|
||||
branch of `docker/docker` checked out (probably not `master`).
|
||||
|
||||
After generating the YAML files, replace the YAML files in
|
||||
[https://github.com/docker/docker.github.io/tree/master/_data/engine-cli](https://github.com/docker/docker.github.io/tree/master/_data/engine-cli)
|
||||
with the newly-generated files. Submit a pull request.
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_attach
|
||||
title: docker attach
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_build
|
||||
title: docker build
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_checkpoint
|
||||
title: docker checkpoint
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_checkpoint_create
|
||||
title: docker checkpoint create
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_checkpoint_ls
|
||||
title: docker checkpoint 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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_checkpoint_rm
|
||||
title: docker checkpoint rm
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_commit
|
||||
title: docker commit
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container
|
||||
title: docker container
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_attach
|
||||
title: docker container attach
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_commit
|
||||
title: docker container commit
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_cp
|
||||
title: docker container 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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_create
|
||||
title: docker container create
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_diff
|
||||
title: docker container diff
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_exec
|
||||
title: docker container exec
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_export
|
||||
title: docker container export
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_inspect
|
||||
title: docker container inspect
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_kill
|
||||
title: docker container kill
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_logs
|
||||
title: docker container logs
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_ls
|
||||
title: docker container 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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_pause
|
||||
title: docker container pause
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_port
|
||||
title: docker container port
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_prune
|
||||
title: docker container prune
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_rename
|
||||
title: docker container rename
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_restart
|
||||
title: docker container restart
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_rm
|
||||
title: docker container rm
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_run
|
||||
title: docker container 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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_start
|
||||
title: docker container start
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_stats
|
||||
title: docker container stats
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_stop
|
||||
title: docker container stop
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_top
|
||||
title: docker container top
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_unpause
|
||||
title: docker container unpause
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_update
|
||||
title: docker container update
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_container_wait
|
||||
title: docker container 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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_cp
|
||||
title: docker 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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_create
|
||||
title: docker create
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_deploy
|
||||
title: docker deploy
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_diff
|
||||
title: docker diff
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker
|
||||
title: docker
|
||||
redirect_from:
|
||||
- /engine/reference/commandline/
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
redirect_from:
|
||||
- /reference/commandline/dockerd/
|
||||
- /reference/commandline/daemon/
|
||||
- /engine/reference/commandline/daemon/
|
||||
description: The daemon command description and usage
|
||||
keywords: container, daemon, runtime
|
||||
title: dockerd
|
||||
datafolder: dockerd-cli
|
||||
datafile: dockerd
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_events
|
||||
title: docker events
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_exec
|
||||
title: docker exec
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_export
|
||||
title: docker export
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_history
|
||||
title: docker history
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image
|
||||
title: docker image
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_build
|
||||
title: docker image build
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_history
|
||||
title: docker image history
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_import
|
||||
title: docker image import
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_inspect
|
||||
title: docker image inspect
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_load
|
||||
title: docker image load
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_ls
|
||||
title: docker image 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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_prune
|
||||
title: docker image prune
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_pull
|
||||
title: docker image pull
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_push
|
||||
title: docker image push
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_rm
|
||||
title: docker image rm
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_save
|
||||
title: docker image save
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_image_tag
|
||||
title: docker image tag
|
||||
---
|
||||
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_images
|
||||
title: docker images
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_import
|
||||
title: docker import
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_info
|
||||
title: docker info
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_inspect
|
||||
title: docker inspect
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_kill
|
||||
title: docker kill
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_load
|
||||
title: docker load
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_login
|
||||
title: docker login
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_logout
|
||||
title: docker logout
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_logs
|
||||
title: docker logs
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network
|
||||
title: docker network
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_connect
|
||||
title: docker network connect
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_create
|
||||
title: docker network create
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_disconnect
|
||||
title: docker network disconnect
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_inspect
|
||||
title: docker network inspect
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_ls
|
||||
title: docker network 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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_prune
|
||||
title: docker network prune
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_network_rm
|
||||
title: docker network rm
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node
|
||||
title: docker node
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_demote
|
||||
title: docker node demote
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_inspect
|
||||
title: docker node inspect
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_ls
|
||||
title: docker node 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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_promote
|
||||
title: docker node promote
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_ps
|
||||
title: docker node ps
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_rm
|
||||
title: docker node rm
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_node_update
|
||||
title: docker node update
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_pause
|
||||
title: docker pause
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin
|
||||
title: docker plugin
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_create
|
||||
title: docker plugin create
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_disable
|
||||
title: docker plugin disable
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_enable
|
||||
title: docker plugin enable
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_inspect
|
||||
title: docker plugin inspect
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_install
|
||||
title: docker plugin install
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_ls
|
||||
title: docker plugin 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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
datafolder: engine-cli-edge
|
||||
datafile: docker_plugin_push
|
||||
title: docker plugin push
|
||||
---
|
||||
<!--
|
||||
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://www.github.com/docker/docker
|
||||
-->
|
||||
{% if page.datafolder contains '-edge' %}
|
||||
{% include edge_only.md section="cliref" %}
|
||||
{% endif %}
|
||||
{% include cli.md datafolder=page.datafolder datafile=page.datafile %}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue