Merge pull request #11604 from thaJeztah/less_overrides

Less overrides
This commit is contained in:
Usha Mandya 2020-10-23 11:02:36 +01:00 committed by GitHub
commit d63d70ca63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
251 changed files with 22 additions and 296 deletions

View File

@ -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.| | 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_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. | | 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`. | | 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. | | 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. | | 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. |

View File

@ -41,7 +41,6 @@ defaults:
layout: docs layout: docs
toc_min: 2 toc_min: 2
toc_max: 3 toc_max: 3
tree: true
# Set the correct edit-URL for upstream resources. We usually don't create a direct # 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. # edit link for these, and instead point to the directory that contains the file.
@ -65,6 +64,7 @@ defaults:
path: engine/reference/commandline path: engine/reference/commandline
values: values:
edit_url: "https://github.com/docker/cli/tree/master/docs/reference/commandline" edit_url: "https://github.com/docker/cli/tree/master/docs/reference/commandline"
skip_read_time: true
- scope: - scope:
path: glossary path: glossary
values: values:

View File

@ -19,7 +19,7 @@
{%- if page.advisory -%} {%- if page.advisory -%}
<blockquote>{{ site.data.advisories.texts[page.advisory] | markdownify }}</blockquote> <blockquote>{{ site.data.advisories.texts[page.advisory] | markdownify }}</blockquote>
{%- endif -%} {%- 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 }} {{ content }}
{%- unless page.notags == true -%} {%- unless page.notags == true -%}
{%- assign keywords = page.keywords | split:"," -%} {%- assign keywords = page.keywords | split:"," -%}

View File

@ -74,6 +74,7 @@
we only preload the "woff2" variants, as older formats (woff, eot) are only used we only preload the "woff2" variants, as older formats (woff, eot) are only used
by older browsers, and we don't optimize for those. by older browsers, and we don't optimize for those.
{%- endcomment -%} {%- 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-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/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"> <link rel="preload" as="font" href="/fonts/glyphicons-halflings-regular.woff2" type="font/woff2" crossorigin="anonymous">

View File

@ -1,9 +1,4 @@
<span class="reading-time" title="Estimated reading time"> {%- assign words = content | number_of_words -%}
<span class="reading-time-label">Estimated reading time: </span> {%- if words >= 360 -%}
{% assign words = content | number_of_words %} <p><em class="reading-time">Estimated reading time: {{ words | divided_by:180 }} minutes</em></p>
{% if words < 360 %} {%- endif -%}
1 minute
{% else %}
{{ words | divided_by:180 }} minutes
{% endif %}
</span>

View File

@ -1,5 +1,5 @@
html { html {
font-family: sans-serif; font-family: $font;
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%; -ms-text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
@ -20,7 +20,7 @@ a {
color: $primary-links; color: $primary-links;
text-decoration: none; text-decoration: none;
outline: none; outline: none;
&:hover { &:hover, &:focus {
opacity: .8; opacity: .8;
text-decoration: none; text-decoration: none;
} }

View File

@ -57,7 +57,6 @@ a.button.outline-btn.min-hgt {
.outline-btn { .outline-btn {
background: #fff; background: #fff;
border: 1px solid #0087C8; border: 1px solid #0087C8;
text-decoration: none;
margin: 0; margin: 0;
&:hover { &:hover {
color: #1488C6; color: #1488C6;

View File

@ -1,11 +1,12 @@
/*
* Images **********************************************************************
*/
.content img { .content, p {
display: block; line-height: 24px;
img {
display: block;
height: auto;
max-width: 100%; max-width: 100%;
height: auto; }
} }
/* /*
@ -95,10 +96,8 @@ h3:hover > a.anchorLink
a.glossary { a.glossary {
color: $body-text; color: $body-text;
text-decoration: none;
outline: none; outline: none;
&:hover { &:hover {
opacity: 1; opacity: 1;
text-decoration: none;
} }
} }

View File

@ -162,6 +162,7 @@ body.landing {
$icons: rocket, download-docker, guides, whats-new, manuals, reference; $icons: rocket, download-docker, guides, whats-new, manuals, reference;
.card { .card {
color: $body-text;
background-color: $bg-card; background-color: $bg-card;
box-shadow: 0 3px 6px rgba(11, 33, 74, 0.09), box-shadow: 0 3px 6px rgba(11, 33, 74, 0.09),
0 -2px 2px rgba(11, 33, 74, 0.03); 0 -2px 2px rgba(11, 33, 74, 0.03);
@ -182,7 +183,7 @@ body.landing {
.title { .title {
font-size: 16px; font-size: 16px;
line-height: 16px; line-height: 16px;
margin: 8px 0; margin: 10px 0;
@include sm-width { @include sm-width {
font-size: 18px; font-size: 18px;
@ -213,11 +214,6 @@ body.landing {
display: block; display: block;
transition: transform 150ms ease-in-out; transition: transform 150ms ease-in-out;
&:focus,
&:visited {
text-decoration: none;
}
&:hover { &:hover {
opacity: 1; opacity: 1;
transform: scale(1.01); transform: scale(1.01);

View File

@ -147,7 +147,6 @@ footer {
color: #637986; color: #637986;
font-size: 12px; font-size: 12px;
line-height: 16px; line-height: 16px;
text-decoration: none;
} }
} }
} }
@ -184,7 +183,6 @@ footer {
} }
.footer-copyright p { .footer-copyright p {
font-family: $font;
font-size: 12px; font-size: 12px;
line-height: 17px; line-height: 17px;
color: #637986; color: #637986;

View File

@ -70,14 +70,11 @@
.nav-sidebar ul li a:focus, .nav-sidebar ul li a:focus,
.nav-sidebar ul li a:hover { .nav-sidebar ul li a:hover {
border-bottom: none; border-bottom: none;
text-decoration: none;
} }
.nav-sidebar ul li a.active, .nav-sidebar ul li a.active,
.nav-sidebar.nav>li>a:focus { .nav-sidebar.nav>li>a:focus {
cursor: default;
background: #F3F4F4; background: #F3F4F4;
color: #2089C4;
border-left: 4px solid $primary-links; border-left: 4px solid $primary-links;
font-weight: 600; font-weight: 600;
} }
@ -122,7 +119,6 @@
display: inline-block; display: inline-block;
font-size: 12px; font-size: 12px;
padding: 5px 10px 5px 10px; padding: 5px 10px 5px 10px;
text-decoration: none;
} }
} }
} }

View File

@ -8,11 +8,11 @@ body.night {
background-color: $bg-header-night; background-color: $bg-header-night;
} }
.card, .cardlet { .card, .cardlet {
color: inherit;
background-color: $bg-card-night; background-color: $bg-card-night;
} }
} }
p,ol,ul,
.rating-nero-value, .rating-nero-value,
.reading-time { .reading-time {
color: $body-text-night !important; color: $body-text-night !important;
@ -51,7 +51,6 @@ body.night {
.nav-sidebar ul li a.active, .nav-sidebar ul li a.active,
.nav-sidebar.nav>li>a:focus, .nav-sidebar.nav>li>a:focus,
.toc-nav li a.active { .toc-nav li a.active {
color: $active-sidebar-night;
background: #0a151a; background: #0a151a;
border-left: 4px solid $primary-links; border-left: 4px solid $primary-links;
} }

View File

@ -2,6 +2,7 @@
blockquote { blockquote {
background-color: $note-bg-color; background-color: $note-bg-color;
border-left-color: $note-color; border-left-color: $note-color;
font-size: unset; // override bootstrap font-size for blockquotes
> p:first-child { > p:first-child {
color: $note-color; color: $note-color;

View File

@ -65,7 +65,6 @@
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover { .dropdown-menu>li>a:hover {
color: #ffffff; color: #ffffff;
text-decoration: none;
background-color: #0c5176; background-color: #0c5176;
} }
@ -117,10 +116,6 @@ a.gs-title {
background: transparent; background: transparent;
} }
img.with-border {
border: 1px solid #eaeaea;
}
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus { input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
display: none!important; display: none!important;
} }

View File

@ -34,14 +34,13 @@
font-family: 'Open Sans'; font-family: 'Open Sans';
font-style: normal; font-style: normal;
font-weight: 400; 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'); 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; 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 { h1,h2,h3,h4,h5,h6 {
font-family: $headings; font-family: $headings;
color: $body-text;
clear: both; clear: both;
line-height: 26px; line-height: 26px;
} }
@ -74,20 +73,6 @@ h6 {
font-size: 14px; 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 { dd, dt {
line-height: 25px; line-height: 25px;
} }

View File

@ -10,9 +10,7 @@
} }
.reading-time { .reading-time {
font-style: italic;
font-size: 12px; font-size: 12px;
display: block;
color: rgba(13, 86, 125, 0.55); color: rgba(13, 86, 125, 0.55);
} }

View File

@ -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 The status of Kubernetes shows in the Docker menu and the context points to
`docker-desktop`. `docker-desktop`.
![Docker Menu with Kubernetes](images/kubernetes/kube-context.png){: .with-border ![Docker Menu with Kubernetes](images/kubernetes/kube-context.png){: width="400px"}
width="400px"}
- By default, Kubernetes containers are hidden from commands like `docker - By default, Kubernetes containers are hidden from commands like `docker
service ls`, because managing them manually is not supported. To make them service ls`, because managing them manually is not supported. To make them

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app datafile: docker_app
title: docker app title: docker app
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_bundle datafile: docker_app_bundle
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_completion datafile: docker_app_completion
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_init datafile: docker_app_init
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_inspect datafile: docker_app_inspect
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_install datafile: docker_app_install
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_list datafile: docker_app_list
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_merge datafile: docker_app_merge
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_pull datafile: docker_app_pull
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_push datafile: docker_app_push
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_render datafile: docker_app_render
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_split datafile: docker_app_split
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_status datafile: docker_app_status
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_uninstall datafile: docker_app_uninstall
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_upgrade datafile: docker_app_upgrade
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_validate datafile: docker_app_validate
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: docker-app datafolder: docker-app
datafile: docker_app_version datafile: docker_app_version
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_attach
title: docker attach title: docker attach
redirect_from: redirect_from:
- /edge/engine/reference/commandline/attach/ - /edge/engine/reference/commandline/attach/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_build
title: docker build title: docker build
redirect_from: redirect_from:
- /edge/engine/reference/commandline/build/ - /edge/engine/reference/commandline/build/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: engine-cli datafolder: engine-cli
datafile: docker_builder datafile: docker_builder
title: docker builder title: docker builder
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: engine-cli datafolder: engine-cli
datafile: docker_builder_build datafile: docker_builder_build
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: engine-cli datafolder: engine-cli
datafile: docker_builder_prune datafile: docker_builder_prune
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx datafile: docker_buildx
title: docker buildx title: docker buildx
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_bake datafile: docker_buildx_bake
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_build datafile: docker_buildx_build
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_create datafile: docker_buildx_create
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_du datafile: docker_buildx_du
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_imagetools datafile: docker_buildx_imagetools
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_imagetools_create datafile: docker_buildx_imagetools_create
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_imagetools_inspect datafile: docker_buildx_imagetools_inspect
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_inspect datafile: docker_buildx_inspect
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_ls datafile: docker_buildx_ls
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_prune datafile: docker_buildx_prune
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_rm datafile: docker_buildx_rm
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_stop datafile: docker_buildx_stop
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_use datafile: docker_buildx_use
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: buildx datafolder: buildx
datafile: docker_buildx_version datafile: docker_buildx_version
title: 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 This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_checkpoint
title: docker checkpoint title: docker checkpoint
redirect_from: redirect_from:
- /edge/engine/reference/commandline/checkpoint/ - /edge/engine/reference/commandline/checkpoint/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_checkpoint_create
title: docker checkpoint create title: docker checkpoint create
redirect_from: redirect_from:
- /edge/engine/reference/commandline/checkpoint_create/ - /edge/engine/reference/commandline/checkpoint_create/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_checkpoint_ls
title: docker checkpoint ls title: docker checkpoint ls
redirect_from: redirect_from:
- /edge/engine/reference/commandline/checkpoint_ls/ - /edge/engine/reference/commandline/checkpoint_ls/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_checkpoint_rm
title: docker checkpoint rm title: docker checkpoint rm
redirect_from: redirect_from:
- /edge/engine/reference/commandline/checkpoint_rm/ - /edge/engine/reference/commandline/checkpoint_rm/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_cluster
title: docker cluster title: docker cluster
redirect_from: /cluster/reference/ redirect_from: /cluster/reference/
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_backup datafile: docker_cluster_backup
title: docker cluster backup title: docker cluster backup
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_create datafile: docker_cluster_create
title: docker cluster create title: docker cluster create
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_inspect datafile: docker_cluster_inspect
title: docker cluster inspect title: docker cluster inspect
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_ls datafile: docker_cluster_ls
title: docker cluster ls title: docker cluster ls
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_restore datafile: docker_cluster_restore
title: docker cluster restore title: docker cluster restore
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_rm datafile: docker_cluster_rm
title: docker cluster rm title: docker cluster rm
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_update datafile: docker_cluster_update
title: docker cluster update title: docker cluster update
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -3,7 +3,6 @@ datafolder: cluster
datafile: docker_cluster_version datafile: docker_cluster_version
title: docker cluster version title: docker cluster version
enterprise_only: true enterprise_only: true
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_commit
title: docker commit title: docker commit
redirect_from: redirect_from:
- /edge/engine/reference/commandline/commit/ - /edge/engine/reference/commandline/commit/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_config
title: docker config title: docker config
redirect_from: redirect_from:
- /edge/engine/reference/commandline/config/ - /edge/engine/reference/commandline/config/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_config_create
title: docker config create title: docker config create
redirect_from: redirect_from:
- /edge/engine/reference/commandline/config_create/ - /edge/engine/reference/commandline/config_create/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_config_inspect
title: docker config inspect title: docker config inspect
redirect_from: redirect_from:
- /edge/engine/reference/commandline/config_inspect/ - /edge/engine/reference/commandline/config_inspect/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_config_ls
title: docker config ls title: docker config ls
redirect_from: redirect_from:
- /edge/engine/reference/commandline/config_ls/ - /edge/engine/reference/commandline/config_ls/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_config_rm
title: docker config rm title: docker config rm
redirect_from: redirect_from:
- /edge/engine/reference/commandline/config_rm/ - /edge/engine/reference/commandline/config_rm/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container
title: docker container title: docker container
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container/ - /edge/engine/reference/commandline/container/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_attach
title: docker container attach title: docker container attach
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_attach/ - /edge/engine/reference/commandline/container_attach/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_commit
title: docker container commit title: docker container commit
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_commit/ - /edge/engine/reference/commandline/container_commit/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_cp
title: docker container cp title: docker container cp
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_cp/ - /edge/engine/reference/commandline/container_cp/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_create
title: docker container create title: docker container create
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_create/ - /edge/engine/reference/commandline/container_create/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_diff
title: docker container diff title: docker container diff
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_diff/ - /edge/engine/reference/commandline/container_diff/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_exec
title: docker container exec title: docker container exec
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_exec/ - /edge/engine/reference/commandline/container_exec/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_export
title: docker container export title: docker container export
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_export/ - /edge/engine/reference/commandline/container_export/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_inspect
title: docker container inspect title: docker container inspect
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_inspect/ - /edge/engine/reference/commandline/container_inspect/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_kill
title: docker container kill title: docker container kill
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_kill/ - /edge/engine/reference/commandline/container_kill/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_logs
title: docker container logs title: docker container logs
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_logs/ - /edge/engine/reference/commandline/container_logs/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_ls
title: docker container ls title: docker container ls
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_ls/ - /edge/engine/reference/commandline/container_ls/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_pause
title: docker container pause title: docker container pause
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_pause/ - /edge/engine/reference/commandline/container_pause/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_port
title: docker container port title: docker container port
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_port/ - /edge/engine/reference/commandline/container_port/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_prune
title: docker container prune title: docker container prune
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_prune/ - /edge/engine/reference/commandline/container_prune/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_rename
title: docker container rename title: docker container rename
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_rename/ - /edge/engine/reference/commandline/container_rename/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_restart
title: docker container restart title: docker container restart
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_restart/ - /edge/engine/reference/commandline/container_restart/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_rm
title: docker container rm title: docker container rm
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_rm/ - /edge/engine/reference/commandline/container_rm/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_run
title: docker container run title: docker container run
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_rm/ - /edge/engine/reference/commandline/container_rm/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_start
title: docker container start title: docker container start
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_start/ - /edge/engine/reference/commandline/container_start/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_stats
title: docker container stats title: docker container stats
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_stats/ - /edge/engine/reference/commandline/container_stats/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_stop
title: docker container stop title: docker container stop
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_stop/ - /edge/engine/reference/commandline/container_stop/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_top
title: docker container top title: docker container top
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_top/ - /edge/engine/reference/commandline/container_top/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_unpause
title: docker container unpause title: docker container unpause
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_unpause/ - /edge/engine/reference/commandline/container_unpause/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_update
title: docker container update title: docker container update
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_update/ - /edge/engine/reference/commandline/container_update/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -4,7 +4,6 @@ datafile: docker_container_wait
title: docker container wait title: docker container wait
redirect_from: redirect_from:
- /edge/engine/reference/commandline/container_wait/ - /edge/engine/reference/commandline/container_wait/
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to This page is automatically generated from Docker's source code. If you want to

View File

@ -2,7 +2,6 @@
datafolder: engine-cli datafolder: engine-cli
datafile: docker_context datafile: docker_context
title: docker context title: docker context
skip_read_time: true
--- ---
<!-- <!--
This page is automatically generated from Docker's source code. If you want to 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