mirror of https://github.com/docker/docs.git
commit
d63d70ca63
|
@ -215,7 +215,6 @@ following keys are supported. The title, description, and keywords are required.
|
|||
| notoc | no | Either `true` or `false`. If `true`, no in-page TOC is generated for the HTML output of this page. Defaults to `false`. Appropriate for some landing pages that have no in-page headings.|
|
||||
| toc_min | no | Ignored if `notoc` is set to `true`. The minimum heading level included in the in-page TOC. Defaults to `2`, to show `<h2>` headings as the minimum. |
|
||||
| toc_max | no | Ignored if `notoc` is set to `false`. The maximum heading level included in the in-page TOC. Defaults to `3`, to show `<h3>` headings. Set to the same as `toc_min` to only show `toc_min` level of headings. |
|
||||
| tree | no | Either `true` or `false`. Set to `false` to disable the left-hand site-wide navigation for this page. Appropriate for some pages like the search page or the 404 page. |
|
||||
| no_ratings | no | Either `true` or `false`. Set to `true` to disable the page-ratings applet for this page. Defaults to `false`. |
|
||||
| skip_read_time | no | Set to `true` to disable the 'Estimated reading time' banner for this page. |
|
||||
| sitemap | no | Exclude the page from indexing by search engines. When set to `false`, the page is excluded from `sitemap.xml`, and a `<meta name="robots" content="noindex"/>` header is added to the page. |
|
||||
|
|
|
@ -41,7 +41,6 @@ defaults:
|
|||
layout: docs
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
tree: true
|
||||
|
||||
# Set the correct edit-URL for upstream resources. We usually don't create a direct
|
||||
# edit link for these, and instead point to the directory that contains the file.
|
||||
|
@ -65,6 +64,7 @@ defaults:
|
|||
path: engine/reference/commandline
|
||||
values:
|
||||
edit_url: "https://github.com/docker/cli/tree/master/docs/reference/commandline"
|
||||
skip_read_time: true
|
||||
- scope:
|
||||
path: glossary
|
||||
values:
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
{%- if page.advisory -%}
|
||||
<blockquote>{{ site.data.advisories.texts[page.advisory] | markdownify }}</blockquote>
|
||||
{%- endif -%}
|
||||
{%- unless page.tree == false or page.skip_read_time == true -%}{% include read_time.html %}{%- endunless -%}
|
||||
{%- unless page.skip_read_time == true -%}{% include read_time.html %}{%- endunless -%}
|
||||
{{ content }}
|
||||
{%- unless page.notags == true -%}
|
||||
{%- assign keywords = page.keywords | split:"," -%}
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
we only preload the "woff2" variants, as older formats (woff, eot) are only used
|
||||
by older browsers, and we don't optimize for those.
|
||||
{%- endcomment -%}
|
||||
<link rel="preload" as="font" href="https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2" type="font/woff2" crossorigin="anonymous">
|
||||
<link rel="preload" as="font" href="/fonts/geomanist/hinted-Geomanist-Book.woff2" type="font/woff2" crossorigin="anonymous">
|
||||
<link rel="preload" as="font" href="/fonts/geomanist/hinted-Geomanist-Regular.woff2" type="font/woff2" crossorigin="anonymous">
|
||||
<link rel="preload" as="font" href="/fonts/glyphicons-halflings-regular.woff2" type="font/woff2" crossorigin="anonymous">
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
<span class="reading-time" title="Estimated reading time">
|
||||
<span class="reading-time-label">Estimated reading time: </span>
|
||||
{% assign words = content | number_of_words %}
|
||||
{% if words < 360 %}
|
||||
1 minute
|
||||
{% else %}
|
||||
{{ words | divided_by:180 }} minutes
|
||||
{% endif %}
|
||||
</span>
|
||||
{%- assign words = content | number_of_words -%}
|
||||
{%- if words >= 360 -%}
|
||||
<p><em class="reading-time">Estimated reading time: {{ words | divided_by:180 }} minutes</em></p>
|
||||
{%- endif -%}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
html {
|
||||
font-family: sans-serif;
|
||||
font-family: $font;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
@ -20,7 +20,7 @@ a {
|
|||
color: $primary-links;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
&:hover {
|
||||
&:hover, &:focus {
|
||||
opacity: .8;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
@ -57,7 +57,6 @@ a.button.outline-btn.min-hgt {
|
|||
.outline-btn {
|
||||
background: #fff;
|
||||
border: 1px solid #0087C8;
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
&:hover {
|
||||
color: #1488C6;
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
/*
|
||||
* Images **********************************************************************
|
||||
*/
|
||||
|
||||
.content img {
|
||||
display: block;
|
||||
.content, p {
|
||||
line-height: 24px;
|
||||
|
||||
img {
|
||||
display: block;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -95,10 +96,8 @@ h3:hover > a.anchorLink
|
|||
|
||||
a.glossary {
|
||||
color: $body-text;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -162,6 +162,7 @@ body.landing {
|
|||
$icons: rocket, download-docker, guides, whats-new, manuals, reference;
|
||||
|
||||
.card {
|
||||
color: $body-text;
|
||||
background-color: $bg-card;
|
||||
box-shadow: 0 3px 6px rgba(11, 33, 74, 0.09),
|
||||
0 -2px 2px rgba(11, 33, 74, 0.03);
|
||||
|
@ -182,7 +183,7 @@ body.landing {
|
|||
.title {
|
||||
font-size: 16px;
|
||||
line-height: 16px;
|
||||
margin: 8px 0;
|
||||
margin: 10px 0;
|
||||
|
||||
@include sm-width {
|
||||
font-size: 18px;
|
||||
|
@ -213,11 +214,6 @@ body.landing {
|
|||
display: block;
|
||||
transition: transform 150ms ease-in-out;
|
||||
|
||||
&:focus,
|
||||
&:visited {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
transform: scale(1.01);
|
||||
|
|
|
@ -147,7 +147,6 @@ footer {
|
|||
color: #637986;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -184,7 +183,6 @@ footer {
|
|||
}
|
||||
|
||||
.footer-copyright p {
|
||||
font-family: $font;
|
||||
font-size: 12px;
|
||||
line-height: 17px;
|
||||
color: #637986;
|
||||
|
|
|
@ -70,14 +70,11 @@
|
|||
.nav-sidebar ul li a:focus,
|
||||
.nav-sidebar ul li a:hover {
|
||||
border-bottom: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav-sidebar ul li a.active,
|
||||
.nav-sidebar.nav>li>a:focus {
|
||||
cursor: default;
|
||||
background: #F3F4F4;
|
||||
color: #2089C4;
|
||||
border-left: 4px solid $primary-links;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
@ -122,7 +119,6 @@
|
|||
display: inline-block;
|
||||
font-size: 12px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,11 +8,11 @@ body.night {
|
|||
background-color: $bg-header-night;
|
||||
}
|
||||
.card, .cardlet {
|
||||
color: inherit;
|
||||
background-color: $bg-card-night;
|
||||
}
|
||||
}
|
||||
|
||||
p,ol,ul,
|
||||
.rating-nero-value,
|
||||
.reading-time {
|
||||
color: $body-text-night !important;
|
||||
|
@ -51,7 +51,6 @@ body.night {
|
|||
.nav-sidebar ul li a.active,
|
||||
.nav-sidebar.nav>li>a:focus,
|
||||
.toc-nav li a.active {
|
||||
color: $active-sidebar-night;
|
||||
background: #0a151a;
|
||||
border-left: 4px solid $primary-links;
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
blockquote {
|
||||
background-color: $note-bg-color;
|
||||
border-left-color: $note-color;
|
||||
font-size: unset; // override bootstrap font-size for blockquotes
|
||||
|
||||
> p:first-child {
|
||||
color: $note-color;
|
||||
|
|
|
@ -65,7 +65,6 @@
|
|||
.dropdown-menu>li>a:focus,
|
||||
.dropdown-menu>li>a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
background-color: #0c5176;
|
||||
}
|
||||
|
||||
|
@ -117,10 +116,6 @@ a.gs-title {
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
img.with-border {
|
||||
border: 1px solid #eaeaea;
|
||||
}
|
||||
|
||||
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
|
||||
display: none!important;
|
||||
}
|
||||
|
|
|
@ -34,14 +34,13 @@
|
|||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
font-display: fallback;
|
||||
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: $headings;
|
||||
color: $body-text;
|
||||
clear: both;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
@ -74,20 +73,6 @@ h6 {
|
|||
font-size: 14px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: $body-text;
|
||||
font-family: $font;
|
||||
font-size: $body-text-size;
|
||||
line-height: 24px;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
dd, dt {
|
||||
line-height: 25px;
|
||||
}
|
||||
|
|
|
@ -10,9 +10,7 @@
|
|||
}
|
||||
|
||||
.reading-time {
|
||||
font-style: italic;
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
color: rgba(13, 86, 125, 0.55);
|
||||
}
|
||||
|
||||
|
|
|
@ -234,8 +234,7 @@ experience conflicts, remove `/usr/local/bin/kubectl`.
|
|||
The status of Kubernetes shows in the Docker menu and the context points to
|
||||
`docker-desktop`.
|
||||
|
||||
{: .with-border
|
||||
width="400px"}
|
||||
{: width="400px"}
|
||||
|
||||
- By default, Kubernetes containers are hidden from commands like `docker
|
||||
service ls`, because managing them manually is not supported. To make them
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app
|
||||
title: docker app
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_bundle
|
||||
title: docker app bundle
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_completion
|
||||
title: docker app completion
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_init
|
||||
title: docker app init
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_inspect
|
||||
title: docker app inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_install
|
||||
title: docker app install
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_list
|
||||
title: docker app list
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_merge
|
||||
title: docker app merge
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_pull
|
||||
title: docker app pull
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_push
|
||||
title: docker app push
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_render
|
||||
title: docker app render
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_split
|
||||
title: docker app split
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_status
|
||||
title: docker app status
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_uninstall
|
||||
title: docker app uninstall
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_upgrade
|
||||
title: docker app upgrade
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_validate
|
||||
title: docker app validate
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_version
|
||||
title: docker app version
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_attach
|
|||
title: docker attach
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/attach/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_build
|
|||
title: docker build
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/build/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_builder
|
||||
title: docker builder
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_builder_build
|
||||
title: docker builder build
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_builder_prune
|
||||
title: docker builder prune
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx
|
||||
title: docker buildx
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_bake
|
||||
title: docker buildx bake
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_build
|
||||
title: docker buildx build
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_create
|
||||
title: docker buildx create
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_du
|
||||
title: docker buildx du
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools
|
||||
title: docker buildx imagetools
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools_create
|
||||
title: docker buildx imagetools create
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools_inspect
|
||||
title: docker buildx imagetools inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_inspect
|
||||
title: docker buildx inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_ls
|
||||
title: docker buildx ls
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_prune
|
||||
title: docker buildx prune
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_rm
|
||||
title: docker buildx rm
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_stop
|
||||
title: docker buildx stop
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_use
|
||||
title: docker buildx use
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_version
|
||||
title: docker buildx version
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_checkpoint
|
|||
title: docker checkpoint
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_checkpoint_create
|
|||
title: docker checkpoint create
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint_create/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_checkpoint_ls
|
|||
title: docker checkpoint ls
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint_ls/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_checkpoint_rm
|
|||
title: docker checkpoint rm
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_cluster
|
|||
title: docker cluster
|
||||
redirect_from: /cluster/reference/
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_backup
|
||||
title: docker cluster backup
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_create
|
||||
title: docker cluster create
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_inspect
|
||||
title: docker cluster inspect
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_ls
|
||||
title: docker cluster ls
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_restore
|
||||
title: docker cluster restore
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_rm
|
||||
title: docker cluster rm
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_update
|
||||
title: docker cluster update
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -3,7 +3,6 @@ datafolder: cluster
|
|||
datafile: docker_cluster_version
|
||||
title: docker cluster version
|
||||
enterprise_only: true
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_commit
|
|||
title: docker commit
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/commit/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_config
|
|||
title: docker config
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_config_create
|
|||
title: docker config create
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_create/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_config_inspect
|
|||
title: docker config inspect
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_inspect/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_config_ls
|
|||
title: docker config ls
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_ls/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_config_rm
|
|||
title: docker config rm
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container
|
|||
title: docker container
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_attach
|
|||
title: docker container attach
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_attach/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_commit
|
|||
title: docker container commit
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_commit/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_cp
|
|||
title: docker container cp
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_cp/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_create
|
|||
title: docker container create
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_create/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_diff
|
|||
title: docker container diff
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_diff/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_exec
|
|||
title: docker container exec
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_exec/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_export
|
|||
title: docker container export
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_export/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_inspect
|
|||
title: docker container inspect
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_inspect/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_kill
|
|||
title: docker container kill
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_kill/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_logs
|
|||
title: docker container logs
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_logs/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_ls
|
|||
title: docker container ls
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_ls/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_pause
|
|||
title: docker container pause
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_pause/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_port
|
|||
title: docker container port
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_port/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_prune
|
|||
title: docker container prune
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_prune/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_rename
|
|||
title: docker container rename
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_rename/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_restart
|
|||
title: docker container restart
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_restart/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_rm
|
|||
title: docker container rm
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_run
|
|||
title: docker container run
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_start
|
|||
title: docker container start
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_start/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_stats
|
|||
title: docker container stats
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_stats/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_stop
|
|||
title: docker container stop
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_stop/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_top
|
|||
title: docker container top
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_top/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_unpause
|
|||
title: docker container unpause
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_unpause/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_update
|
|||
title: docker container update
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_update/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -4,7 +4,6 @@ datafile: docker_container_wait
|
|||
title: docker container wait
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_wait/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_context
|
||||
title: docker context
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue