Convert Markdown frontmatter to YAML
Some frontmatter such as the weights, menu stuff, etc is no longer used 'draft=true' becomes 'published: false' Signed-off-by: Misty Stanley-Jones <misty@docker.com>
This commit is contained in:
parent
d0a17e4813
commit
b30609446d
119 changed files with 660 additions and 1161 deletions
|
@ -1,14 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
aliases = ["/engine/misc/deprecated/"]
|
||||
title = "Deprecated Engine Features"
|
||||
description = "Deprecated Features."
|
||||
keywords = ["docker, documentation, about, technology, deprecate"]
|
||||
[menu.main]
|
||||
parent = "engine_use"
|
||||
weight=80
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
aliases: ["/engine/misc/deprecated/"]
|
||||
title: "Deprecated Engine Features"
|
||||
description: "Deprecated Features."
|
||||
keywords: ["docker, documentation, about, technology, deprecate"]
|
||||
---
|
||||
|
||||
# Deprecated Engine Features
|
||||
|
||||
|
@ -192,7 +187,7 @@ The single-dash (`-help`) was removed, in favor of the double-dash `--help`
|
|||
|
||||
**Removed In Release: [v1.13.0](https://github.com/docker/docker/releases/)**
|
||||
|
||||
The flag `--run` of the docker commit (and its short version `-run`) were deprecated in favor
|
||||
The flag `--run` of the docker commit (and its short version `-run`) were deprecated in favor
|
||||
of the `--changes` flag that allows to pass `Dockerfile` commands.
|
||||
|
||||
|
||||
|
|
|
@ -1,17 +1,12 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
aliases = [
|
||||
---
|
||||
aliases: [
|
||||
"/engine/extend/"
|
||||
]
|
||||
title = "Managed plugin system"
|
||||
description = "How develop and use a plugin with the managed plugin system"
|
||||
keywords = ["API, Usage, plugins, documentation, developer"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight=1
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
title: "Managed plugin system"
|
||||
description: "How develop and use a plugin with the managed plugin system"
|
||||
keywords: ["API, Usage, plugins, documentation, developer"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# Docker Engine managed plugin system
|
||||
|
||||
|
|
|
@ -1,14 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
aliases = "/engine/extend/plugins/"
|
||||
title = "Use Docker Engine plugins"
|
||||
description = "How to add additional functionality to Docker with plugins extensions"
|
||||
keywords = ["Examples, Usage, plugins, docker, documentation, user guide"]
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight=3
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
aliases: "/engine/extend/plugins/"
|
||||
title: "Use Docker Engine plugins"
|
||||
description: "How to add additional functionality to Docker with plugins extensions"
|
||||
keywords: ["Examples, Usage, plugins, docker, documentation, user guide"]
|
||||
---
|
||||
|
||||
# Use Docker Engine plugins
|
||||
|
||||
|
|
|
@ -1,17 +1,12 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
aliases = [
|
||||
---
|
||||
aliases: [
|
||||
"/engine/extend/"
|
||||
]
|
||||
title = "Plugin manifest"
|
||||
description = "How develop and use a plugin with the managed plugin system"
|
||||
keywords = ["API, Usage, plugins, documentation, developer"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight=1
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
title: "Plugin manifest"
|
||||
description: "How develop and use a plugin with the managed plugin system"
|
||||
keywords: ["API, Usage, plugins, documentation, developer"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# Plugin Manifest Version 0 of Plugin V2
|
||||
|
||||
|
@ -47,7 +42,7 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **`interface`** *PluginInterface*
|
||||
|
||||
interface implemented by the plugins, struct consisting of the following fields
|
||||
|
||||
|
||||
- **`types`** *string array*
|
||||
|
||||
types indicate what interface(s) the plugin currently implements.
|
||||
|
@ -55,9 +50,9 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
currently supported:
|
||||
|
||||
- **docker.volumedriver/1.0**
|
||||
|
||||
|
||||
- **`socket`** *string*
|
||||
|
||||
|
||||
socket is the name of the socket the engine should use to communicate with the plugins.
|
||||
the socket will be created in `/run/docker/plugins`.
|
||||
|
||||
|
@ -73,7 +68,7 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **`network`** *PluginNetwork*
|
||||
|
||||
network of the plugin, struct consisting of the following fields
|
||||
|
||||
|
||||
- **`type`** *string*
|
||||
|
||||
network type.
|
||||
|
@ -83,11 +78,11 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **bridge**
|
||||
- **host**
|
||||
- **none**
|
||||
|
||||
|
||||
- **`capabilities`** *array*
|
||||
|
||||
capabilities of the plugin (*Linux only*), see list [`here`](https://github.com/opencontainers/runc/blob/master/libcontainer/SPEC.md#security)
|
||||
|
||||
|
||||
- **`mounts`** *PluginMount array*
|
||||
|
||||
mount of the plugin, struct consisting of the following fields, see [`MOUNTS`](https://github.com/opencontainers/runtime-spec/blob/master/config.md#mounts)
|
||||
|
@ -95,27 +90,27 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **`name`** *string*
|
||||
|
||||
name of the mount.
|
||||
|
||||
|
||||
- **`description`** *string*
|
||||
|
||||
|
||||
description of the mount.
|
||||
|
||||
|
||||
- **`source`** *string*
|
||||
|
||||
source of the mount.
|
||||
|
||||
|
||||
- **`destination`** *string*
|
||||
|
||||
destination of the mount.
|
||||
|
||||
|
||||
- **`type`** *string*
|
||||
|
||||
mount type.
|
||||
|
||||
|
||||
- **`options`** *string array*
|
||||
|
||||
options of the mount.
|
||||
|
||||
|
||||
- **`devices`** *PluginDevice array*
|
||||
|
||||
device of the plugin, (*Linux only*), struct consisting of the following fields, see [`DEVICES`](https://github.com/opencontainers/runtime-spec/blob/master/config-linux.md#devices)
|
||||
|
@ -123,11 +118,11 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **`name`** *string*
|
||||
|
||||
name of the device.
|
||||
|
||||
|
||||
- **`description`** *string*
|
||||
|
||||
description of the device.
|
||||
|
||||
|
||||
- **`path`** *string*
|
||||
|
||||
path of the device.
|
||||
|
@ -139,15 +134,15 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **`name`** *string*
|
||||
|
||||
name of the env.
|
||||
|
||||
|
||||
- **`description`** *string*
|
||||
|
||||
|
||||
description of the env.
|
||||
|
||||
|
||||
- **`value`** *string*
|
||||
|
||||
value of the env.
|
||||
|
||||
|
||||
- **`args`** *PluginArgs*
|
||||
|
||||
args of the plugin, struct consisting of the following fields
|
||||
|
@ -155,16 +150,16 @@ Manifest provides the base accessible fields for working with V0 plugin format
|
|||
- **`name`** *string*
|
||||
|
||||
name of the env.
|
||||
|
||||
|
||||
- **`description`** *string*
|
||||
|
||||
|
||||
description of the env.
|
||||
|
||||
|
||||
- **`value`** *string array*
|
||||
|
||||
values of the args.
|
||||
|
||||
|
||||
|
||||
|
||||
## Example Manifest
|
||||
|
||||
*Example showing the 'tiborvass/no-remove' plugin manifest.*
|
||||
|
|
|
@ -1,15 +1,10 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Implement plugins"
|
||||
description = "Develop plugins and use existing plugins for Docker Engine"
|
||||
keywords = ["extend, plugins, docker, documentation, developer"]
|
||||
type="menu"
|
||||
[menu.main]
|
||||
identifier = "engine_extend"
|
||||
parent="engine_use"
|
||||
weight = 0
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Implement plugins"
|
||||
description: "Develop plugins and use existing plugins for Docker Engine"
|
||||
keywords: ["extend, plugins, docker, documentation, developer"]
|
||||
type: "menu"
|
||||
identifier: "engine_extend"
|
||||
---
|
||||
|
||||
|
||||
<!--menu page not rendered-->
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Plugins API"
|
||||
description = "How to write Docker plugins extensions "
|
||||
keywords = ["API, Usage, plugins, documentation, developer"]
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight=7
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Plugins API"
|
||||
description: "How to write Docker plugins extensions "
|
||||
keywords: ["API, Usage, plugins, documentation, developer"]
|
||||
---
|
||||
|
||||
# Docker Plugin API
|
||||
|
||||
|
|
|
@ -1,14 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Access authorization plugin"
|
||||
description = "How to create authorization plugins to manage access control to your Docker daemon."
|
||||
keywords = ["security, authorization, authentication, docker, documentation, plugin, extend"]
|
||||
aliases = ["/engine/extend/authorization/"]
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight = 4
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Access authorization plugin"
|
||||
description: "How to create authorization plugins to manage access control to your Docker daemon."
|
||||
keywords: ["security, authorization, authentication, docker, documentation, plugin, extend"]
|
||||
aliases: ["/engine/extend/authorization/"]
|
||||
---
|
||||
|
||||
|
||||
# Create an authorization plugin
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Docker network driver plugins"
|
||||
description = "Network driver plugins."
|
||||
keywords = ["Examples, Usage, plugins, docker, documentation, user guide"]
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight=5
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Docker network driver plugins"
|
||||
description: "Network driver plugins."
|
||||
keywords: ["Examples, Usage, plugins, docker, documentation, user guide"]
|
||||
---
|
||||
|
||||
# Engine network driver plugins
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Volume plugins"
|
||||
description = "How to manage data with external volume plugins"
|
||||
keywords = ["Examples, Usage, volume, docker, data, volumes, plugin, api"]
|
||||
[menu.main]
|
||||
parent = "engine_extend"
|
||||
weight=6
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Volume plugins"
|
||||
description: "How to manage data with external volume plugins"
|
||||
keywords: ["Examples, Usage, volume, docker, data, volumes, plugin, api"]
|
||||
---
|
||||
|
||||
# Write a volume plugin
|
||||
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
draft = true
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
published: false
|
||||
---
|
||||
|
||||
This directory holds the authoritative specifications of APIs defined and implemented by Docker. Currently this includes:
|
||||
|
||||
|
|
|
@ -1,14 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
draft = true
|
||||
title = "Docker Hub API"
|
||||
description = "API Documentation for the Docker Hub API"
|
||||
keywords = ["API, Docker, index, REST, documentation, Docker Hub, registry"]
|
||||
[menu.main]
|
||||
parent = "engine_remoteapi"
|
||||
weight = 99
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
published: false
|
||||
title: "Docker Hub API"
|
||||
description: "API Documentation for the Docker Hub API"
|
||||
keywords: ["API, Docker, index, REST, documentation, Docker Hub, registry"]
|
||||
---
|
||||
|
||||
# Docker Hub API
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "docker.io accounts API"
|
||||
description = "API Documentation for docker.io accounts."
|
||||
keywords = ["API, Docker, accounts, REST, documentation"]
|
||||
[menu.main]
|
||||
parent = "engine_remoteapi"
|
||||
weight=90
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "docker.io accounts API"
|
||||
description: "API Documentation for docker.io accounts."
|
||||
keywords: ["API, Docker, accounts, REST, documentation"]
|
||||
---
|
||||
|
||||
# docker.io accounts API
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent = "engine_remoteapi"
|
||||
weight=-99
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.18"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent = "engine_remoteapi"
|
||||
weight = 3
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.18"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.18
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.19"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent = "engine_remoteapi"
|
||||
weight = 2
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.19"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.19
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.20"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight = 1
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.20"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.20
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.21"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight=-2
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.21"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.21
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.22"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight=-3
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.22"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.22
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.23"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight=-4
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.23"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.23
|
||||
|
||||
|
@ -2688,7 +2683,7 @@ See the [image tarball format](#image-tarball-format) for more details.
|
|||
|
||||
**Example response**:
|
||||
|
||||
If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
|
||||
If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
|
||||
details are suppressed, and only a confirmation message is returned once the
|
||||
action completes.
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.24"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight=-5
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.24"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.24
|
||||
|
||||
|
@ -2702,7 +2697,7 @@ See the [image tarball format](#image-tarball-format) for more details.
|
|||
|
||||
**Example response**:
|
||||
|
||||
If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
|
||||
If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
|
||||
details are suppressed, and only a confirmation message is returned once the
|
||||
action completes.
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API v1.25"
|
||||
description = "API Documentation for Docker"
|
||||
keywords = ["API, Docker, rcli, REST, documentation"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight=-6
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API v1.25"
|
||||
description: "API Documentation for Docker"
|
||||
keywords: ["API, Docker, rcli, REST, documentation"]
|
||||
---
|
||||
|
||||
# Docker Remote API v1.25
|
||||
|
||||
|
@ -3095,7 +3090,7 @@ See the [image tarball format](#image-tarball-format) for more details.
|
|||
|
||||
**Example response**:
|
||||
|
||||
If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
|
||||
If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
|
||||
details are suppressed, and only a confirmation message is returned once the
|
||||
action completes.
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
draft = true
|
||||
title = "The Docker Hub and the Registry v1"
|
||||
description = "Documentation for docker Registry and Registry API"
|
||||
keywords = ["docker, registry, api, hub"]
|
||||
[menu.main]
|
||||
parent="smn_hub_ref"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
published: false
|
||||
title: "The Docker Hub and the Registry v1"
|
||||
description: "Documentation for docker Registry and Registry API"
|
||||
keywords: ["docker, registry, api, hub"]
|
||||
---
|
||||
|
||||
# The Docker Hub and the Registry v1
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!-- [metadata]>
|
||||
+++
|
||||
title = "API Reference"
|
||||
description = "Reference"
|
||||
keywords = ["Engine"]
|
||||
[menu.main]
|
||||
identifier="engine_remoteapi"
|
||||
parent="engine_ref"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "API Reference"
|
||||
description: "Reference"
|
||||
keywords: ["Engine"]
|
||||
identifier: "engine_remoteapi"
|
||||
---
|
||||
|
||||
|
||||
# API Reference
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Remote API client libraries"
|
||||
description = "Various client libraries available to use with the Docker remote API"
|
||||
keywords = ["API, Docker, index, registry, REST, documentation, clients, C#, Erlang, Go, Groovy, Java, JavaScript, Perl, PHP, Python, Ruby, Rust, Scala"]
|
||||
[menu.main]
|
||||
parent="engine_remoteapi"
|
||||
weight = 90
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Remote API client libraries"
|
||||
description: "Various client libraries available to use with the Docker remote API"
|
||||
keywords: ["API, Docker, index, registry, REST, documentation, clients, C#, Erlang, Go, Groovy, Java, JavaScript, Perl, PHP, Python, Ruby, Rust, Scala"]
|
||||
---
|
||||
|
||||
# Docker Remote API client libraries
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Dockerfile reference"
|
||||
description = "Dockerfiles use a simple DSL which allows you to automate the steps you would normally manually take to create an image."
|
||||
keywords = ["builder, docker, Dockerfile, automation, image creation"]
|
||||
[menu.main]
|
||||
parent = "engine_ref"
|
||||
weight=-90
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Dockerfile reference"
|
||||
description: "Dockerfiles use a simple DSL which allows you to automate the steps you would normally manually take to create an image."
|
||||
keywords: ["builder, docker, Dockerfile, automation, image creation"]
|
||||
---
|
||||
|
||||
# Dockerfile reference
|
||||
|
||||
|
@ -698,7 +693,7 @@ To view an image's labels, use the `docker inspect` command.
|
|||
|
||||
MAINTAINER <name>
|
||||
|
||||
The `MAINTAINER` instruction sets the *Author* field of the generated images.
|
||||
The `MAINTAINER` instruction sets the *Author* field of the generated images.
|
||||
The `LABEL` instruction is a much more flexible version of this and you should use
|
||||
it instead, as it enables setting any metadata you require, and can be viewed
|
||||
easily, for example with `docker inspect`. To set a label corresponding to the
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "attach"
|
||||
description = "The attach command description and usage"
|
||||
keywords = ["attach, running, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "attach"
|
||||
description: "The attach command description and usage"
|
||||
keywords: ["attach, running, container"]
|
||||
---
|
||||
|
||||
# attach
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "build"
|
||||
description = "The build command description and usage"
|
||||
keywords = ["build, docker, image"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "build"
|
||||
description: "The build command description and usage"
|
||||
keywords: ["build, docker, image"]
|
||||
---
|
||||
|
||||
# build
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "Use the Docker command line"
|
||||
description = "Docker's CLI command description and usage"
|
||||
keywords = ["Docker, Docker documentation, CLI, command line"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
weight = -2
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Use the Docker command line"
|
||||
description: "Docker's CLI command description and usage"
|
||||
keywords: ["Docker, Docker documentation, CLI, command line"]
|
||||
---
|
||||
|
||||
# Use the Docker command line
|
||||
|
||||
|
@ -122,7 +117,7 @@ directives, see the
|
|||
Once attached to a container, users detach from it and leave it running using
|
||||
the using `CTRL-p CTRL-q` key sequence. This detach key sequence is customizable
|
||||
using the `detachKeys` property. Specify a `<sequence>` value for the
|
||||
property. The format of the `<sequence>` is a comma-separated list of either
|
||||
property. The format of the `<sequence>` is a comma-separated list of either
|
||||
a letter [a-Z], or the `ctrl-` combined with any of the following:
|
||||
|
||||
* `a-z` (a single lowercase alpha character )
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "commit"
|
||||
description = "The commit command description and usage"
|
||||
keywords = ["commit, file, changes"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "commit"
|
||||
description: "The commit command description and usage"
|
||||
keywords: ["commit, file, changes"]
|
||||
---
|
||||
|
||||
# commit
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "container prune"
|
||||
description = "Remove all stopped containers"
|
||||
keywords = [container, prune, delete, remove]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "container prune"
|
||||
description: "Remove all stopped containers"
|
||||
keywords: [container, prune, delete, remove]
|
||||
---
|
||||
|
||||
# container prune
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "cp"
|
||||
description = "The cp command description and usage"
|
||||
keywords = ["copy, container, files, folders"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "cp"
|
||||
description: "The cp command description and usage"
|
||||
keywords: ["copy, container, files, folders"]
|
||||
---
|
||||
|
||||
# cp
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "create"
|
||||
description = "The create command description and usage"
|
||||
keywords = ["docker, create, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "create"
|
||||
description: "The create command description and usage"
|
||||
keywords: ["docker, create, container"]
|
||||
---
|
||||
|
||||
# create
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "deploy"
|
||||
description = "The deploy command description and usage"
|
||||
keywords = ["stack, deploy"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "deploy"
|
||||
description: "The deploy command description and usage"
|
||||
keywords: ["stack, deploy"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# stack deploy (experimental)
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "diff"
|
||||
description = "The diff command description and usage"
|
||||
keywords = ["list, changed, files, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "diff"
|
||||
description: "The diff command description and usage"
|
||||
keywords: ["list, changed, files, container"]
|
||||
---
|
||||
|
||||
# diff
|
||||
|
||||
|
|
|
@ -1,14 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "dockerd"
|
||||
aliases = ["/engine/reference/commandline/daemon/"]
|
||||
description = "The daemon command description and usage"
|
||||
keywords = ["container, daemon, runtime"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
weight = -1
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "dockerd"
|
||||
aliases: ["/engine/reference/commandline/daemon/"]
|
||||
description: "The daemon command description and usage"
|
||||
keywords: ["container, daemon, runtime"]
|
||||
---
|
||||
|
||||
# daemon
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "events"
|
||||
description = "The events command description and usage"
|
||||
keywords = ["events, container, report"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "events"
|
||||
description: "The events command description and usage"
|
||||
keywords: ["events, container, report"]
|
||||
---
|
||||
|
||||
# events
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "exec"
|
||||
description = "The exec command description and usage"
|
||||
keywords = ["command, container, run, execute"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "exec"
|
||||
description: "The exec command description and usage"
|
||||
keywords: ["command, container, run, execute"]
|
||||
---
|
||||
|
||||
# exec
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "export"
|
||||
description = "The export command description and usage"
|
||||
keywords = ["export, file, system, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "export"
|
||||
description: "The export command description and usage"
|
||||
keywords: ["export, file, system, container"]
|
||||
---
|
||||
|
||||
# export
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "history"
|
||||
description = "The history command description and usage"
|
||||
keywords = ["docker, image, history"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "history"
|
||||
description: "The history command description and usage"
|
||||
keywords: ["docker, image, history"]
|
||||
---
|
||||
|
||||
# history
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "image prune"
|
||||
description = "Remove all stopped images"
|
||||
keywords = [image, prune, delete, remove]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "image prune"
|
||||
description: "Remove all stopped images"
|
||||
keywords: [image, prune, delete, remove]
|
||||
---
|
||||
|
||||
# image prune
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "images"
|
||||
description = "The images command description and usage"
|
||||
keywords = ["list, docker, images"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "images"
|
||||
description: "The images command description and usage"
|
||||
keywords: ["list, docker, images"]
|
||||
---
|
||||
|
||||
# images
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "import"
|
||||
description = "The import command description and usage"
|
||||
keywords = ["import, file, system, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "import"
|
||||
description: "The import command description and usage"
|
||||
keywords: ["import, file, system, container"]
|
||||
---
|
||||
|
||||
# import
|
||||
|
||||
|
|
|
@ -1,14 +1,9 @@
|
|||
<!-- [metadata]>
|
||||
+++
|
||||
title = "Docker commands"
|
||||
description = "Docker's CLI command description and usage"
|
||||
keywords = ["Docker, Docker documentation, CLI, command line"]
|
||||
[menu.main]
|
||||
identifier= "smn_cli_guide"
|
||||
parent = "smn_cli"
|
||||
weight=-70
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Docker commands"
|
||||
description: "Docker's CLI command description and usage"
|
||||
keywords: ["Docker, Docker documentation, CLI, command line"]
|
||||
identifier: "smn_cli_guide"
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "info"
|
||||
description = "The info command description and usage"
|
||||
keywords = ["display, docker, information"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "info"
|
||||
description: "The info command description and usage"
|
||||
keywords: ["display, docker, information"]
|
||||
---
|
||||
|
||||
# info
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "inspect"
|
||||
description = "The inspect command description and usage"
|
||||
keywords = ["inspect, container, json"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "inspect"
|
||||
description: "The inspect command description and usage"
|
||||
keywords: ["inspect, container, json"]
|
||||
---
|
||||
|
||||
# inspect
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "kill"
|
||||
description = "The kill command description and usage"
|
||||
keywords = ["container, kill, signal"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "kill"
|
||||
description: "The kill command description and usage"
|
||||
keywords: ["container, kill, signal"]
|
||||
---
|
||||
|
||||
# kill
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "load"
|
||||
description = "The load command description and usage"
|
||||
keywords = ["stdin, tarred, repository"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "load"
|
||||
description: "The load command description and usage"
|
||||
keywords: ["stdin, tarred, repository"]
|
||||
---
|
||||
|
||||
# load
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "login"
|
||||
description = "The login command description and usage"
|
||||
keywords = ["registry, login, image"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "login"
|
||||
description: "The login command description and usage"
|
||||
keywords: ["registry, login, image"]
|
||||
---
|
||||
|
||||
# login
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "logout"
|
||||
description = "The logout command description and usage"
|
||||
keywords = ["logout, docker, registry"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "logout"
|
||||
description: "The logout command description and usage"
|
||||
keywords: ["logout, docker, registry"]
|
||||
---
|
||||
|
||||
# logout
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "logs"
|
||||
description = "The logs command description and usage"
|
||||
keywords = ["logs, retrieve, docker"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "logs"
|
||||
description: "The logs command description and usage"
|
||||
keywords: ["logs, retrieve, docker"]
|
||||
---
|
||||
|
||||
# logs
|
||||
|
||||
|
|
|
@ -1,14 +1,9 @@
|
|||
<!-- [metadata]>
|
||||
+++
|
||||
title = "Command line reference"
|
||||
description = "Docker's CLI command description and usage"
|
||||
keywords = ["Docker, Docker documentation, CLI, command line"]
|
||||
[menu.main]
|
||||
identifier= "smn_cli"
|
||||
parent = "engine_ref"
|
||||
weight=-75
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "Command line reference"
|
||||
description: "Docker's CLI command description and usage"
|
||||
keywords: ["Docker, Docker documentation, CLI, command line"]
|
||||
identifier: "smn_cli"
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "network connect"
|
||||
description = "The network connect command description and usage"
|
||||
keywords = ["network, connect, user-defined"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "network connect"
|
||||
description: "The network connect command description and usage"
|
||||
keywords: ["network, connect, user-defined"]
|
||||
---
|
||||
|
||||
# network connect
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "network create"
|
||||
description = "The network create command description and usage"
|
||||
keywords = ["network, create"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "network create"
|
||||
description: "The network create command description and usage"
|
||||
keywords: ["network, create"]
|
||||
---
|
||||
|
||||
# network create
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "network disconnect"
|
||||
description = "The network disconnect command description and usage"
|
||||
keywords = ["network, disconnect, user-defined"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "network disconnect"
|
||||
description: "The network disconnect command description and usage"
|
||||
keywords: ["network, disconnect, user-defined"]
|
||||
---
|
||||
|
||||
# network disconnect
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "network inspect"
|
||||
description = "The network inspect command description and usage"
|
||||
keywords = ["network, inspect, user-defined"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "network inspect"
|
||||
description: "The network inspect command description and usage"
|
||||
keywords: ["network, inspect, user-defined"]
|
||||
---
|
||||
|
||||
# network inspect
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "network ls"
|
||||
description = "The network ls command description and usage"
|
||||
keywords = ["network, list, user-defined"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "network ls"
|
||||
description: "The network ls command description and usage"
|
||||
keywords: ["network, list, user-defined"]
|
||||
---
|
||||
|
||||
# docker network ls
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "network rm"
|
||||
description = "the network rm command description and usage"
|
||||
keywords = ["network, rm, user-defined"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "network rm"
|
||||
description: "the network rm command description and usage"
|
||||
keywords: ["network, rm, user-defined"]
|
||||
---
|
||||
|
||||
# network rm
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node demote"
|
||||
description = "The node demote command description and usage"
|
||||
keywords = ["node, demote"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node demote"
|
||||
description: "The node demote command description and usage"
|
||||
keywords: ["node, demote"]
|
||||
---
|
||||
|
||||
# node demote
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node inspect"
|
||||
description = "The node inspect command description and usage"
|
||||
keywords = ["node, inspect"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node inspect"
|
||||
description: "The node inspect command description and usage"
|
||||
keywords: ["node, inspect"]
|
||||
---
|
||||
|
||||
# node inspect
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node ls"
|
||||
description = "The node ls command description and usage"
|
||||
keywords = ["node, list"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node ls"
|
||||
description: "The node ls command description and usage"
|
||||
keywords: ["node, list"]
|
||||
---
|
||||
|
||||
# node ls
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node promote"
|
||||
description = "The node promote command description and usage"
|
||||
keywords = ["node, promote"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node promote"
|
||||
description: "The node promote command description and usage"
|
||||
keywords: ["node, promote"]
|
||||
---
|
||||
|
||||
# node promote
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node ps"
|
||||
description = "The node ps command description and usage"
|
||||
keywords = ["node, tasks", "ps"]
|
||||
aliases = ["/engine/reference/commandline/node_tasks/"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node ps"
|
||||
description: "The node ps command description and usage"
|
||||
keywords: ["node, tasks", "ps"]
|
||||
aliases: ["/engine/reference/commandline/node_tasks/"]
|
||||
---
|
||||
|
||||
# node ps
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node rm"
|
||||
description = "The node rm command description and usage"
|
||||
keywords = ["node, remove"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node rm"
|
||||
description: "The node rm command description and usage"
|
||||
keywords: ["node, remove"]
|
||||
---
|
||||
|
||||
# node rm
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "node update"
|
||||
description = "The node update command description and usage"
|
||||
keywords = ["resources, update, dynamically"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "node update"
|
||||
description: "The node update command description and usage"
|
||||
keywords: ["resources, update, dynamically"]
|
||||
---
|
||||
|
||||
## update
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "pause"
|
||||
description = "The pause command description and usage"
|
||||
keywords = ["cgroups, container, suspend, SIGSTOP"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "pause"
|
||||
description: "The pause command description and usage"
|
||||
keywords: ["cgroups, container, suspend, SIGSTOP"]
|
||||
---
|
||||
|
||||
# pause
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "plugin disable"
|
||||
description = "the plugin disable command description and usage"
|
||||
keywords = ["plugin, disable"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "plugin disable"
|
||||
description: "the plugin disable command description and usage"
|
||||
keywords: ["plugin, disable"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# plugin disable (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "plugin enable"
|
||||
description = "the plugin enable command description and usage"
|
||||
keywords = ["plugin, enable"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "plugin enable"
|
||||
description: "the plugin enable command description and usage"
|
||||
keywords: ["plugin, enable"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# plugin enable (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "plugin inspect"
|
||||
description = "The plugin inspect command description and usage"
|
||||
keywords = ["plugin, inspect"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "plugin inspect"
|
||||
description: "The plugin inspect command description and usage"
|
||||
keywords: ["plugin, inspect"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# plugin inspect (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "plugin install"
|
||||
description = "the plugin install command description and usage"
|
||||
keywords = ["plugin, install"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "plugin install"
|
||||
description: "the plugin install command description and usage"
|
||||
keywords: ["plugin, install"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# plugin install (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "plugin ls"
|
||||
description = "The plugin ls command description and usage"
|
||||
keywords = ["plugin, list"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "plugin ls"
|
||||
description: "The plugin ls command description and usage"
|
||||
keywords: ["plugin, list"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# plugin ls (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "plugin rm"
|
||||
description = "the plugin rm command description and usage"
|
||||
keywords = ["plugin, rm"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "plugin rm"
|
||||
description: "the plugin rm command description and usage"
|
||||
keywords: ["plugin, rm"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# plugin rm (experimental)
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "port"
|
||||
description = "The port command description and usage"
|
||||
keywords = ["port, mapping, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "port"
|
||||
description: "The port command description and usage"
|
||||
keywords: ["port, mapping, container"]
|
||||
---
|
||||
|
||||
# port
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "ps"
|
||||
description = "The ps command description and usage"
|
||||
keywords = ["container, running, list"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "ps"
|
||||
description: "The ps command description and usage"
|
||||
keywords: ["container, running, list"]
|
||||
---
|
||||
|
||||
# ps
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "pull"
|
||||
description = "The pull command description and usage"
|
||||
keywords = ["pull, image, hub, docker"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "pull"
|
||||
description: "The pull command description and usage"
|
||||
keywords: ["pull, image, hub, docker"]
|
||||
---
|
||||
|
||||
# pull
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "push"
|
||||
description = "The push command description and usage"
|
||||
keywords = ["share, push, image"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "push"
|
||||
description: "The push command description and usage"
|
||||
keywords: ["share, push, image"]
|
||||
---
|
||||
|
||||
# push
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "rename"
|
||||
description = "The rename command description and usage"
|
||||
keywords = ["rename, docker, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "rename"
|
||||
description: "The rename command description and usage"
|
||||
keywords: ["rename, docker, container"]
|
||||
---
|
||||
|
||||
# rename
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "restart"
|
||||
description = "The restart command description and usage"
|
||||
keywords = ["restart, container, Docker"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "restart"
|
||||
description: "The restart command description and usage"
|
||||
keywords: ["restart, container, Docker"]
|
||||
---
|
||||
|
||||
# restart
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "rm"
|
||||
description = "The rm command description and usage"
|
||||
keywords = ["remove, Docker, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "rm"
|
||||
description: "The rm command description and usage"
|
||||
keywords: ["remove, Docker, container"]
|
||||
---
|
||||
|
||||
# rm
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "rmi"
|
||||
description = "The rmi command description and usage"
|
||||
keywords = ["remove, image, Docker"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "rmi"
|
||||
description: "The rmi command description and usage"
|
||||
keywords: ["remove, image, Docker"]
|
||||
---
|
||||
|
||||
# rmi
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "run"
|
||||
description = "The run command description and usage"
|
||||
keywords = ["run, command, container"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "run"
|
||||
description: "The run command description and usage"
|
||||
keywords: ["run, command, container"]
|
||||
---
|
||||
|
||||
# run
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "save"
|
||||
description = "The save command description and usage"
|
||||
keywords = ["tarred, repository, backup"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "save"
|
||||
description: "The save command description and usage"
|
||||
keywords: ["tarred, repository, backup"]
|
||||
---
|
||||
|
||||
# save
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "search"
|
||||
description = "The search command description and usage"
|
||||
keywords = ["search, hub, images"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "search"
|
||||
description: "The search command description and usage"
|
||||
keywords: ["search, hub, images"]
|
||||
---
|
||||
|
||||
# search
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service create"
|
||||
description = "The service create command description and usage"
|
||||
keywords = ["service, create"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service create"
|
||||
description: "The service create command description and usage"
|
||||
keywords: ["service, create"]
|
||||
---
|
||||
|
||||
# service create
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service inspect"
|
||||
description = "The service inspect command description and usage"
|
||||
keywords = ["service, inspect"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service inspect"
|
||||
description: "The service inspect command description and usage"
|
||||
keywords: ["service, inspect"]
|
||||
---
|
||||
|
||||
# service inspect
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service ls"
|
||||
description = "The service ls command description and usage"
|
||||
keywords = ["service, ls"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service ls"
|
||||
description: "The service ls command description and usage"
|
||||
keywords: ["service, ls"]
|
||||
---
|
||||
|
||||
# service ls
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service ps"
|
||||
description = "The service ps command description and usage"
|
||||
keywords = ["service, tasks", "ps"]
|
||||
aliases = ["/engine/reference/commandline/service_tasks/"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service ps"
|
||||
description: "The service ps command description and usage"
|
||||
keywords: ["service, tasks", "ps"]
|
||||
aliases: ["/engine/reference/commandline/service_tasks/"]
|
||||
---
|
||||
|
||||
# service ps
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service rm"
|
||||
description = "The service rm command description and usage"
|
||||
keywords = ["service, rm"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service rm"
|
||||
description: "The service rm command description and usage"
|
||||
keywords: ["service, rm"]
|
||||
---
|
||||
|
||||
# service rm
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service scale"
|
||||
description = "The service scale command description and usage"
|
||||
keywords = ["service, scale"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service scale"
|
||||
description: "The service scale command description and usage"
|
||||
keywords: ["service, scale"]
|
||||
---
|
||||
|
||||
# service scale
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "service update"
|
||||
description = "The service update command description and usage"
|
||||
keywords = ["service, update"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "service update"
|
||||
description: "The service update command description and usage"
|
||||
keywords: ["service, update"]
|
||||
---
|
||||
|
||||
# service update
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stack config"
|
||||
description = "The stack config command description and usage"
|
||||
keywords = ["stack, config"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stack config"
|
||||
description: "The stack config command description and usage"
|
||||
keywords: ["stack, config"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# stack config (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stack deploy"
|
||||
description = "The stack deploy command description and usage"
|
||||
keywords = ["stack, deploy, up"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stack deploy"
|
||||
description: "The stack deploy command description and usage"
|
||||
keywords: ["stack, deploy, up"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# stack deploy (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stack ls"
|
||||
description = "The stack ls command description and usage"
|
||||
keywords = ["stack, ls"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stack ls"
|
||||
description: "The stack ls command description and usage"
|
||||
keywords: ["stack, ls"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# stack ls (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stack ps"
|
||||
description = "The stack ps command description and usage"
|
||||
keywords = ["stack, ps"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stack ps"
|
||||
description: "The stack ps command description and usage"
|
||||
keywords: ["stack, ps"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# stack ps (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stack rm"
|
||||
description = "The stack rm command description and usage"
|
||||
keywords = ["stack, rm, remove, down"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stack rm"
|
||||
description: "The stack rm command description and usage"
|
||||
keywords: ["stack, rm, remove, down"]
|
||||
advisory: "experimental"
|
||||
|
||||
|
||||
---
|
||||
|
||||
# stack rm (experimental)
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stack services"
|
||||
description = "The stack services command description and usage"
|
||||
keywords = ["stack, services"]
|
||||
advisory = "experimental"
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stack services"
|
||||
description: "The stack services command description and usage"
|
||||
keywords: ["stack, services"]
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
# stack services (experimental)
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "start"
|
||||
description = "The start command description and usage"
|
||||
keywords = ["Start, container, stopped"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "start"
|
||||
description: "The start command description and usage"
|
||||
keywords: ["Start, container, stopped"]
|
||||
---
|
||||
|
||||
# start
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stats"
|
||||
description = "The stats command description and usage"
|
||||
keywords = ["container, resource, statistics"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stats"
|
||||
description: "The stats command description and usage"
|
||||
keywords: ["container, resource, statistics"]
|
||||
---
|
||||
|
||||
# stats
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "stop"
|
||||
description = "The stop command description and usage"
|
||||
keywords = ["stop, SIGKILL, SIGTERM"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "stop"
|
||||
description: "The stop command description and usage"
|
||||
keywords: ["stop, SIGKILL, SIGTERM"]
|
||||
---
|
||||
|
||||
# stop
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "swarm init"
|
||||
description = "The swarm init command description and usage"
|
||||
keywords = ["swarm, init"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "swarm init"
|
||||
description: "The swarm init command description and usage"
|
||||
keywords: ["swarm, init"]
|
||||
---
|
||||
|
||||
# swarm init
|
||||
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
<!--[metadata]>
|
||||
+++
|
||||
title = "swarm join"
|
||||
description = "The swarm join command description and usage"
|
||||
keywords = ["swarm, join"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
---
|
||||
title: "swarm join"
|
||||
description: "The swarm join command description and usage"
|
||||
keywords: ["swarm, join"]
|
||||
---
|
||||
|
||||
# swarm join
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue