Browse code

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>

Misty Stanley-Jones authored on 2016/10/15 07:30:36
Showing 119 changed files
... ...
@@ -1,14 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-aliases = ["/engine/misc/deprecated/"]
4
-title = "Deprecated Engine Features"
5
-description = "Deprecated Features."
6
-keywords = ["docker, documentation, about, technology, deprecate"]
7
-[menu.main]
8
-parent = "engine_use"
9
-weight=80
10
-+++
11
-<![end-metadata]-->
1
+---
2
+aliases: ["/engine/misc/deprecated/"]
3
+title: "Deprecated Engine Features"
4
+description: "Deprecated Features."
5
+keywords: ["docker, documentation, about, technology, deprecate"]
6
+---
12 7
 
13 8
 # Deprecated Engine Features
14 9
 
... ...
@@ -192,7 +187,7 @@ The single-dash (`-help`) was removed, in favor of the double-dash `--help`
192 192
 
193 193
 **Removed In Release: [v1.13.0](https://github.com/docker/docker/releases/)**
194 194
 
195
-The flag `--run` of the docker commit (and its short version `-run`) were deprecated in favor 
195
+The flag `--run` of the docker commit (and its short version `-run`) were deprecated in favor
196 196
 of the `--changes` flag that allows to pass `Dockerfile` commands.
197 197
 
198 198
 
... ...
@@ -1,17 +1,12 @@
1
-<!--[metadata]>
2
-+++
3
-aliases = [
1
+---
2
+aliases: [
4 3
 "/engine/extend/"
5 4
 ]
6
-title = "Managed plugin system"
7
-description = "How develop and use a plugin with the managed plugin system"
8
-keywords = ["API, Usage, plugins, documentation, developer"]
9
-advisory = "experimental"
10
-[menu.main]
11
-parent = "engine_extend"
12
-weight=1
13
-+++
14
-<![end-metadata]-->
5
+title: "Managed plugin system"
6
+description: "How develop and use a plugin with the managed plugin system"
7
+keywords: ["API, Usage, plugins, documentation, developer"]
8
+advisory: "experimental"
9
+---
15 10
 
16 11
 # Docker Engine managed plugin system
17 12
 
... ...
@@ -1,14 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-aliases = "/engine/extend/plugins/"
4
-title = "Use Docker Engine plugins"
5
-description = "How to add additional functionality to Docker with plugins extensions"
6
-keywords = ["Examples, Usage, plugins, docker, documentation, user guide"]
7
-[menu.main]
8
-parent = "engine_extend"
9
-weight=3
10
-+++
11
-<![end-metadata]-->
1
+---
2
+aliases: "/engine/extend/plugins/"
3
+title: "Use Docker Engine plugins"
4
+description: "How to add additional functionality to Docker with plugins extensions"
5
+keywords: ["Examples, Usage, plugins, docker, documentation, user guide"]
6
+---
12 7
 
13 8
 # Use Docker Engine plugins
14 9
 
... ...
@@ -1,17 +1,12 @@
1
-<!--[metadata]>
2
-+++
3
-aliases = [
1
+---
2
+aliases: [
4 3
 "/engine/extend/"
5 4
 ]
6
-title = "Plugin manifest"
7
-description = "How develop and use a plugin with the managed plugin system"
8
-keywords = ["API, Usage, plugins, documentation, developer"]
9
-advisory = "experimental"
10
-[menu.main]
11
-parent = "engine_extend"
12
-weight=1
13
-+++
14
-<![end-metadata]-->
5
+title: "Plugin manifest"
6
+description: "How develop and use a plugin with the managed plugin system"
7
+keywords: ["API, Usage, plugins, documentation, developer"]
8
+advisory: "experimental"
9
+---
15 10
 
16 11
 # Plugin Manifest Version 0 of Plugin V2
17 12
 
... ...
@@ -47,7 +42,7 @@ Manifest provides the base accessible fields for working with V0 plugin format
47 47
 - **`interface`** *PluginInterface*
48 48
 
49 49
    interface implemented by the plugins, struct consisting of the following fields
50
-      
50
+
51 51
     - **`types`** *string array*
52 52
 
53 53
       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
55 55
       currently supported:
56 56
 
57 57
       	- **docker.volumedriver/1.0**
58
-      
58
+
59 59
     - **`socket`** *string*
60
-      
60
+
61 61
       socket is the name of the socket the engine should use to communicate with the plugins.
62 62
       the socket will be created in `/run/docker/plugins`.
63 63
 
... ...
@@ -73,7 +68,7 @@ Manifest provides the base accessible fields for working with V0 plugin format
73 73
 - **`network`** *PluginNetwork*
74 74
 
75 75
    network of the plugin, struct consisting of the following fields
76
-      
76
+
77 77
     - **`type`** *string*
78 78
 
79 79
       network type.
... ...
@@ -83,11 +78,11 @@ Manifest provides the base accessible fields for working with V0 plugin format
83 83
       	- **bridge**
84 84
       	- **host**
85 85
       	- **none**
86
-      
86
+
87 87
 - **`capabilities`** *array*
88 88
 
89 89
    capabilities of the plugin (*Linux only*), see list [`here`](https://github.com/opencontainers/runc/blob/master/libcontainer/SPEC.md#security)
90
-    
90
+
91 91
 - **`mounts`** *PluginMount array*
92 92
 
93 93
    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
95 95
     - **`name`** *string*
96 96
 
97 97
 	  name of the mount.
98
-      
98
+
99 99
     - **`description`** *string*
100
-	
100
+
101 101
       description of the mount.
102
-   
102
+
103 103
     - **`source`** *string*
104 104
 
105 105
 	  source of the mount.
106
-    
106
+
107 107
     - **`destination`** *string*
108 108
 
109 109
 	  destination of the mount.
110
-   
110
+
111 111
     - **`type`** *string*
112 112
 
113 113
       mount type.
114
-      
114
+
115 115
     - **`options`** *string array*
116 116
 
117 117
 	  options of the mount.
118
-      
118
+
119 119
 - **`devices`** *PluginDevice array*
120 120
 
121 121
     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
123 123
     - **`name`** *string*
124 124
 
125 125
 	  name of the device.
126
-      
126
+
127 127
     - **`description`** *string*
128 128
 
129 129
       description of the device.
130
-      
130
+
131 131
     - **`path`** *string*
132 132
 
133 133
 	  path of the device.
... ...
@@ -139,15 +134,15 @@ Manifest provides the base accessible fields for working with V0 plugin format
139 139
     - **`name`** *string*
140 140
 
141 141
 	  name of the env.
142
-      
142
+
143 143
     - **`description`** *string*
144
-	
144
+
145 145
       description of the env.
146
-   
146
+
147 147
     - **`value`** *string*
148 148
 
149 149
 	  value of the env.
150
-    
150
+
151 151
 - **`args`** *PluginArgs*
152 152
 
153 153
    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
155 155
     - **`name`** *string*
156 156
 
157 157
 	  name of the env.
158
-      
158
+
159 159
     - **`description`** *string*
160
-	
160
+
161 161
       description of the env.
162
-   
162
+
163 163
     - **`value`** *string array*
164 164
 
165 165
 	  values of the args.
166
-    
167
-    
166
+
167
+
168 168
 ## Example Manifest
169 169
 
170 170
 *Example showing the 'tiborvass/no-remove' plugin manifest.*
... ...
@@ -1,15 +1,10 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Implement plugins"
4
-description = "Develop plugins and use existing plugins for Docker Engine"
5
-keywords = ["extend, plugins, docker, documentation, developer"]
6
-type="menu"
7
-[menu.main]
8
-identifier = "engine_extend"
9
-parent="engine_use"
10
-weight = 0
11
-+++
12
-<![end-metadata]-->
1
+---
2
+title: "Implement plugins"
3
+description: "Develop plugins and use existing plugins for Docker Engine"
4
+keywords: ["extend, plugins, docker, documentation, developer"]
5
+type: "menu"
6
+identifier: "engine_extend"
7
+---
13 8
 
14 9
 
15 10
 <!--menu page not rendered-->
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Plugins API"
4
-description = "How to write Docker plugins extensions "
5
-keywords = ["API, Usage, plugins, documentation, developer"]
6
-[menu.main]
7
-parent = "engine_extend"
8
-weight=7
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Plugins API"
3
+description: "How to write Docker plugins extensions "
4
+keywords: ["API, Usage, plugins, documentation, developer"]
5
+---
11 6
 
12 7
 # Docker Plugin API
13 8
 
... ...
@@ -1,14 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Access authorization plugin"
4
-description = "How to create authorization plugins to manage access control to your Docker daemon."
5
-keywords = ["security, authorization, authentication, docker, documentation, plugin, extend"]
6
-aliases = ["/engine/extend/authorization/"]
7
-[menu.main]
8
-parent = "engine_extend"
9
-weight = 4
10
-+++
11
-<![end-metadata]-->
1
+---
2
+title: "Access authorization plugin"
3
+description: "How to create authorization plugins to manage access control to your Docker daemon."
4
+keywords: ["security, authorization, authentication, docker, documentation, plugin, extend"]
5
+aliases: ["/engine/extend/authorization/"]
6
+---
12 7
 
13 8
 
14 9
 # Create an authorization plugin
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Docker network driver plugins"
4
-description = "Network driver plugins."
5
-keywords = ["Examples, Usage, plugins, docker, documentation, user guide"]
6
-[menu.main]
7
-parent = "engine_extend"
8
-weight=5
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Docker network driver plugins"
3
+description: "Network driver plugins."
4
+keywords: ["Examples, Usage, plugins, docker, documentation, user guide"]
5
+---
11 6
 
12 7
 # Engine network driver plugins
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Volume plugins"
4
-description = "How to manage data with external volume plugins"
5
-keywords = ["Examples, Usage, volume, docker, data, volumes, plugin, api"]
6
-[menu.main]
7
-parent = "engine_extend"
8
-weight=6
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Volume plugins"
3
+description: "How to manage data with external volume plugins"
4
+keywords: ["Examples, Usage, volume, docker, data, volumes, plugin, api"]
5
+---
11 6
 
12 7
 # Write a volume plugin
13 8
 
... ...
@@ -1,8 +1,6 @@
1
-<!--[metadata]>
2
-+++
3
-draft = true
4
-+++
5
-<![end-metadata]-->
1
+---
2
+published: false
3
+---
6 4
 
7 5
 This directory holds the authoritative specifications of APIs defined and implemented by Docker. Currently this includes:
8 6
 
... ...
@@ -1,14 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-draft = true
4
-title = "Docker Hub API"
5
-description = "API Documentation for the Docker Hub API"
6
-keywords = ["API, Docker, index, REST, documentation, Docker Hub,  registry"]
7
-[menu.main]
8
-parent = "engine_remoteapi"
9
-weight = 99
10
-+++
11
-<![end-metadata]-->
1
+---
2
+published: false
3
+title: "Docker Hub API"
4
+description: "API Documentation for the Docker Hub API"
5
+keywords: ["API, Docker, index, REST, documentation, Docker Hub,  registry"]
6
+---
12 7
 
13 8
 # Docker Hub API
14 9
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "docker.io accounts API"
4
-description = "API Documentation for docker.io accounts."
5
-keywords = ["API, Docker, accounts, REST,  documentation"]
6
-[menu.main]
7
-parent = "engine_remoteapi"
8
-weight=90
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "docker.io accounts API"
3
+description: "API Documentation for docker.io accounts."
4
+keywords: ["API, Docker, accounts, REST,  documentation"]
5
+---
11 6
 
12 7
 # docker.io accounts API
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent = "engine_remoteapi"
8
-weight=-99
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.18"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent = "engine_remoteapi"
8
-weight = 3
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.18"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.18
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.19"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent = "engine_remoteapi"
8
-weight = 2
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.19"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.19
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.20"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight = 1
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.20"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.20
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.21"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight=-2
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.21"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.21
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.22"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight=-3
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.22"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.22
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.23"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight=-4
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.23"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.23
13 8
 
... ...
@@ -2688,7 +2683,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2688 2688
 
2689 2689
 **Example response**:
2690 2690
 
2691
-If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress 
2691
+If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
2692 2692
 details are suppressed, and only a confirmation message is returned once the
2693 2693
 action completes.
2694 2694
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.24"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight=-5
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.24"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.24
13 8
 
... ...
@@ -2702,7 +2697,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2702 2702
 
2703 2703
 **Example response**:
2704 2704
 
2705
-If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress 
2705
+If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
2706 2706
 details are suppressed, and only a confirmation message is returned once the
2707 2707
 action completes.
2708 2708
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API v1.25"
4
-description = "API Documentation for Docker"
5
-keywords = ["API, Docker, rcli, REST,  documentation"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight=-6
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API v1.25"
3
+description: "API Documentation for Docker"
4
+keywords: ["API, Docker, rcli, REST,  documentation"]
5
+---
11 6
 
12 7
 # Docker Remote API v1.25
13 8
 
... ...
@@ -3095,7 +3090,7 @@ See the [image tarball format](#image-tarball-format) for more details.
3095 3095
 
3096 3096
 **Example response**:
3097 3097
 
3098
-If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress 
3098
+If the "quiet" query parameter is set to `true` / `1` (`?quiet=1`), progress
3099 3099
 details are suppressed, and only a confirmation message is returned once the
3100 3100
 action completes.
3101 3101
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-draft = true
4
-title = "The Docker Hub and the Registry v1"
5
-description = "Documentation for docker Registry and Registry API"
6
-keywords = ["docker, registry, api,  hub"]
7
-[menu.main]
8
-parent="smn_hub_ref"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+published: false
3
+title: "The Docker Hub and the Registry v1"
4
+description: "Documentation for docker Registry and Registry API"
5
+keywords: ["docker, registry, api,  hub"]
6
+---
11 7
 
12 8
 # The Docker Hub and the Registry v1
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!-- [metadata]>
2
-+++
3
-title = "API Reference"
4
-description = "Reference"
5
-keywords = ["Engine"]
6
-[menu.main]
7
-identifier="engine_remoteapi"
8
-parent="engine_ref"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "API Reference"
3
+description: "Reference"
4
+keywords: ["Engine"]
5
+identifier: "engine_remoteapi"
6
+---
11 7
 
12 8
 
13 9
 # API Reference
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Remote API client libraries"
4
-description = "Various client libraries available to use with the Docker remote API"
5
-keywords = ["API, Docker, index, registry, REST, documentation, clients, C#, Erlang, Go, Groovy, Java, JavaScript, Perl, PHP, Python, Ruby, Rust,  Scala"]
6
-[menu.main]
7
-parent="engine_remoteapi"
8
-weight = 90
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Remote API client libraries"
3
+description: "Various client libraries available to use with the Docker remote API"
4
+keywords: ["API, Docker, index, registry, REST, documentation, clients, C#, Erlang, Go, Groovy, Java, JavaScript, Perl, PHP, Python, Ruby, Rust,  Scala"]
5
+---
11 6
 
12 7
 # Docker Remote API client libraries
13 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Dockerfile reference"
4
-description = "Dockerfiles use a simple DSL which allows you to automate the steps you would normally manually take to create an image."
5
-keywords = ["builder, docker, Dockerfile, automation,  image creation"]
6
-[menu.main]
7
-parent = "engine_ref"
8
-weight=-90
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Dockerfile reference"
3
+description: "Dockerfiles use a simple DSL which allows you to automate the steps you would normally manually take to create an image."
4
+keywords: ["builder, docker, Dockerfile, automation,  image creation"]
5
+---
11 6
 
12 7
 # Dockerfile reference
13 8
 
... ...
@@ -698,7 +693,7 @@ To view an image's labels, use the `docker inspect` command.
698 698
 
699 699
     MAINTAINER <name>
700 700
 
701
-The `MAINTAINER` instruction sets the *Author* field of the generated images. 
701
+The `MAINTAINER` instruction sets the *Author* field of the generated images.
702 702
 The `LABEL` instruction is a much more flexible version of this and you should use
703 703
 it instead, as it enables setting any metadata you require, and can be viewed
704 704
 easily, for example with `docker inspect`. To set a label corresponding to the
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "attach"
4
-description = "The attach command description and usage"
5
-keywords = ["attach, running, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "attach"
3
+description: "The attach command description and usage"
4
+keywords: ["attach, running, container"]
5
+---
10 6
 
11 7
 # attach
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "build"
4
-description = "The build command description and usage"
5
-keywords = ["build, docker, image"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "build"
3
+description: "The build command description and usage"
4
+keywords: ["build, docker, image"]
5
+---
10 6
 
11 7
 # build
12 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Use the Docker command line"
4
-description = "Docker's CLI command description and usage"
5
-keywords = ["Docker, Docker documentation, CLI,  command line"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-weight = -2
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Use the Docker command line"
3
+description: "Docker's CLI command description and usage"
4
+keywords: ["Docker, Docker documentation, CLI,  command line"]
5
+---
11 6
 
12 7
 # Use the Docker command line
13 8
 
... ...
@@ -122,7 +117,7 @@ directives, see the
122 122
 Once attached to a container, users detach from it and leave it running using
123 123
 the using `CTRL-p CTRL-q` key sequence. This detach key sequence is customizable
124 124
 using the `detachKeys` property. Specify a `<sequence>` value for the
125
-property. The format of the `<sequence>` is a comma-separated list of either 
125
+property. The format of the `<sequence>` is a comma-separated list of either
126 126
 a letter [a-Z], or the `ctrl-` combined with any of the following:
127 127
 
128 128
 * `a-z` (a single lowercase alpha character )
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "commit"
4
-description = "The commit command description and usage"
5
-keywords = ["commit, file, changes"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "commit"
3
+description: "The commit command description and usage"
4
+keywords: ["commit, file, changes"]
5
+---
10 6
 
11 7
 # commit
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "container prune"
4
-description = "Remove all stopped containers"
5
-keywords = [container, prune, delete, remove]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "container prune"
3
+description: "Remove all stopped containers"
4
+keywords: [container, prune, delete, remove]
5
+---
10 6
 
11 7
 # container prune
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "cp"
4
-description = "The cp command description and usage"
5
-keywords = ["copy, container, files, folders"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "cp"
3
+description: "The cp command description and usage"
4
+keywords: ["copy, container, files, folders"]
5
+---
10 6
 
11 7
 # cp
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "create"
4
-description = "The create command description and usage"
5
-keywords = ["docker, create, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "create"
3
+description: "The create command description and usage"
4
+keywords: ["docker, create, container"]
5
+---
10 6
 
11 7
 # create
12 8
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "deploy"
4
-description = "The deploy command description and usage"
5
-keywords = ["stack, deploy"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "deploy"
3
+description: "The deploy command description and usage"
4
+keywords: ["stack, deploy"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # stack deploy (experimental)
13 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "diff"
4
-description = "The diff command description and usage"
5
-keywords = ["list, changed, files, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "diff"
3
+description: "The diff command description and usage"
4
+keywords: ["list, changed, files, container"]
5
+---
10 6
 
11 7
 # diff
12 8
 
... ...
@@ -1,14 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "dockerd"
4
-aliases = ["/engine/reference/commandline/daemon/"]
5
-description = "The daemon command description and usage"
6
-keywords = ["container, daemon, runtime"]
7
-[menu.main]
8
-parent = "smn_cli"
9
-weight = -1
10
-+++
11
-<![end-metadata]-->
1
+---
2
+title: "dockerd"
3
+aliases: ["/engine/reference/commandline/daemon/"]
4
+description: "The daemon command description and usage"
5
+keywords: ["container, daemon, runtime"]
6
+---
12 7
 
13 8
 # daemon
14 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "events"
4
-description = "The events command description and usage"
5
-keywords = ["events, container, report"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "events"
3
+description: "The events command description and usage"
4
+keywords: ["events, container, report"]
5
+---
10 6
 
11 7
 # events
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "exec"
4
-description = "The exec command description and usage"
5
-keywords = ["command, container, run, execute"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "exec"
3
+description: "The exec command description and usage"
4
+keywords: ["command, container, run, execute"]
5
+---
10 6
 
11 7
 # exec
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "export"
4
-description = "The export command description and usage"
5
-keywords = ["export, file, system, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "export"
3
+description: "The export command description and usage"
4
+keywords: ["export, file, system, container"]
5
+---
10 6
 
11 7
 # export
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "history"
4
-description = "The history command description and usage"
5
-keywords = ["docker, image, history"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "history"
3
+description: "The history command description and usage"
4
+keywords: ["docker, image, history"]
5
+---
10 6
 
11 7
 # history
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "image prune"
4
-description = "Remove all stopped images"
5
-keywords = [image, prune, delete, remove]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "image prune"
3
+description: "Remove all stopped images"
4
+keywords: [image, prune, delete, remove]
5
+---
10 6
 
11 7
 # image prune
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "images"
4
-description = "The images command description and usage"
5
-keywords = ["list, docker, images"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "images"
3
+description: "The images command description and usage"
4
+keywords: ["list, docker, images"]
5
+---
10 6
 
11 7
 # images
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "import"
4
-description = "The import command description and usage"
5
-keywords = ["import, file, system, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "import"
3
+description: "The import command description and usage"
4
+keywords: ["import, file, system, container"]
5
+---
10 6
 
11 7
 # import
12 8
 
... ...
@@ -1,14 +1,9 @@
1
-<!-- [metadata]>
2
-+++
3
-title = "Docker commands"
4
-description = "Docker's CLI command description and usage"
5
-keywords = ["Docker, Docker documentation, CLI,  command line"]
6
-[menu.main]
7
-identifier= "smn_cli_guide"
8
-parent = "smn_cli"
9
-weight=-70
10
-+++
11
-<![end-metadata]-->
1
+---
2
+title: "Docker commands"
3
+description: "Docker's CLI command description and usage"
4
+keywords: ["Docker, Docker documentation, CLI,  command line"]
5
+identifier: "smn_cli_guide"
6
+---
12 7
 
13 8
 
14 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "info"
4
-description = "The info command description and usage"
5
-keywords = ["display, docker, information"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "info"
3
+description: "The info command description and usage"
4
+keywords: ["display, docker, information"]
5
+---
10 6
 
11 7
 # info
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "inspect"
4
-description = "The inspect command description and usage"
5
-keywords = ["inspect, container, json"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "inspect"
3
+description: "The inspect command description and usage"
4
+keywords: ["inspect, container, json"]
5
+---
10 6
 
11 7
 # inspect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "kill"
4
-description = "The kill command description and usage"
5
-keywords = ["container, kill, signal"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "kill"
3
+description: "The kill command description and usage"
4
+keywords: ["container, kill, signal"]
5
+---
10 6
 
11 7
 # kill
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "load"
4
-description = "The load command description and usage"
5
-keywords = ["stdin, tarred, repository"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "load"
3
+description: "The load command description and usage"
4
+keywords: ["stdin, tarred, repository"]
5
+---
10 6
 
11 7
 # load
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "login"
4
-description = "The login command description and usage"
5
-keywords = ["registry, login, image"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "login"
3
+description: "The login command description and usage"
4
+keywords: ["registry, login, image"]
5
+---
10 6
 
11 7
 # login
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "logout"
4
-description = "The logout command description and usage"
5
-keywords = ["logout, docker, registry"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "logout"
3
+description: "The logout command description and usage"
4
+keywords: ["logout, docker, registry"]
5
+---
10 6
 
11 7
 # logout
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "logs"
4
-description = "The logs command description and usage"
5
-keywords = ["logs, retrieve, docker"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "logs"
3
+description: "The logs command description and usage"
4
+keywords: ["logs, retrieve, docker"]
5
+---
10 6
 
11 7
 # logs
12 8
 
... ...
@@ -1,14 +1,9 @@
1
-<!-- [metadata]>
2
-+++
3
-title = "Command line reference"
4
-description = "Docker's CLI command description and usage"
5
-keywords = ["Docker, Docker documentation, CLI,  command line"]
6
-[menu.main]
7
-identifier= "smn_cli"
8
-parent = "engine_ref"
9
-weight=-75
10
-+++
11
-<![end-metadata]-->
1
+---
2
+title: "Command line reference"
3
+description: "Docker's CLI command description and usage"
4
+keywords: ["Docker, Docker documentation, CLI,  command line"]
5
+identifier:  "smn_cli"
6
+---
12 7
 
13 8
 
14 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "network connect"
4
-description = "The network connect command description and usage"
5
-keywords = ["network, connect, user-defined"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "network connect"
3
+description: "The network connect command description and usage"
4
+keywords: ["network, connect, user-defined"]
5
+---
10 6
 
11 7
 # network connect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "network create"
4
-description = "The network create command description and usage"
5
-keywords = ["network, create"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "network create"
3
+description: "The network create command description and usage"
4
+keywords: ["network, create"]
5
+---
10 6
 
11 7
 # network create
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "network disconnect"
4
-description = "The network disconnect command description and usage"
5
-keywords = ["network, disconnect, user-defined"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "network disconnect"
3
+description: "The network disconnect command description and usage"
4
+keywords: ["network, disconnect, user-defined"]
5
+---
10 6
 
11 7
 # network disconnect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "network inspect"
4
-description = "The network inspect command description and usage"
5
-keywords = ["network, inspect, user-defined"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "network inspect"
3
+description: "The network inspect command description and usage"
4
+keywords: ["network, inspect, user-defined"]
5
+---
10 6
 
11 7
 # network inspect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "network ls"
4
-description = "The network ls command description and usage"
5
-keywords = ["network, list, user-defined"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "network ls"
3
+description: "The network ls command description and usage"
4
+keywords: ["network, list, user-defined"]
5
+---
10 6
 
11 7
 # docker network ls
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "network rm"
4
-description = "the network rm command description and usage"
5
-keywords = ["network, rm, user-defined"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "network rm"
3
+description: "the network rm command description and usage"
4
+keywords: ["network, rm, user-defined"]
5
+---
10 6
 
11 7
 # network rm
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node demote"
4
-description = "The node demote command description and usage"
5
-keywords = ["node, demote"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "node demote"
3
+description: "The node demote command description and usage"
4
+keywords: ["node, demote"]
5
+---
10 6
 
11 7
 # node demote
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node inspect"
4
-description = "The node inspect command description and usage"
5
-keywords = ["node, inspect"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "node inspect"
3
+description: "The node inspect command description and usage"
4
+keywords: ["node, inspect"]
5
+---
10 6
 
11 7
 # node inspect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node ls"
4
-description = "The node ls command description and usage"
5
-keywords = ["node, list"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "node ls"
3
+description: "The node ls command description and usage"
4
+keywords: ["node, list"]
5
+---
10 6
 
11 7
 # node ls
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node promote"
4
-description = "The node promote command description and usage"
5
-keywords = ["node, promote"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "node promote"
3
+description: "The node promote command description and usage"
4
+keywords: ["node, promote"]
5
+---
10 6
 
11 7
 # node promote
12 8
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node ps"
4
-description = "The node ps command description and usage"
5
-keywords = ["node, tasks", "ps"]
6
-aliases = ["/engine/reference/commandline/node_tasks/"]
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "node ps"
3
+description: "The node ps command description and usage"
4
+keywords: ["node, tasks", "ps"]
5
+aliases: ["/engine/reference/commandline/node_tasks/"]
6
+---
11 7
 
12 8
 # node ps
13 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node rm"
4
-description = "The node rm command description and usage"
5
-keywords = ["node, remove"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "node rm"
3
+description: "The node rm command description and usage"
4
+keywords: ["node, remove"]
5
+---
10 6
 
11 7
 # node rm
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "node update"
4
-description = "The node update command description and usage"
5
-keywords = ["resources, update, dynamically"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "node update"
3
+description: "The node update command description and usage"
4
+keywords: ["resources, update, dynamically"]
5
+---
10 6
 
11 7
 ## update
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "pause"
4
-description = "The pause command description and usage"
5
-keywords = ["cgroups, container, suspend, SIGSTOP"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "pause"
3
+description: "The pause command description and usage"
4
+keywords: ["cgroups, container, suspend, SIGSTOP"]
5
+---
10 6
 
11 7
 # pause
12 8
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "plugin disable"
4
-description = "the plugin disable command description and usage"
5
-keywords = ["plugin, disable"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "plugin disable"
3
+description: "the plugin disable command description and usage"
4
+keywords: ["plugin, disable"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # plugin disable (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "plugin enable"
4
-description = "the plugin enable command description and usage"
5
-keywords = ["plugin, enable"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "plugin enable"
3
+description: "the plugin enable command description and usage"
4
+keywords: ["plugin, enable"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # plugin enable (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "plugin inspect"
4
-description = "The plugin inspect command description and usage"
5
-keywords = ["plugin, inspect"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "plugin inspect"
3
+description: "The plugin inspect command description and usage"
4
+keywords: ["plugin, inspect"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # plugin inspect (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "plugin install"
4
-description = "the plugin install command description and usage"
5
-keywords = ["plugin, install"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "plugin install"
3
+description: "the plugin install command description and usage"
4
+keywords: ["plugin, install"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # plugin install (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "plugin ls"
4
-description = "The plugin ls command description and usage"
5
-keywords = ["plugin, list"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "plugin ls"
3
+description: "The plugin ls command description and usage"
4
+keywords: ["plugin, list"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # plugin ls (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "plugin rm"
4
-description = "the plugin rm command description and usage"
5
-keywords = ["plugin, rm"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "plugin rm"
3
+description: "the plugin rm command description and usage"
4
+keywords: ["plugin, rm"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # plugin rm (experimental)
13 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "port"
4
-description = "The port command description and usage"
5
-keywords = ["port, mapping, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "port"
3
+description: "The port command description and usage"
4
+keywords: ["port, mapping, container"]
5
+---
10 6
 
11 7
 # port
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "ps"
4
-description = "The ps command description and usage"
5
-keywords = ["container, running, list"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "ps"
3
+description: "The ps command description and usage"
4
+keywords: ["container, running, list"]
5
+---
10 6
 
11 7
 # ps
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "pull"
4
-description = "The pull command description and usage"
5
-keywords = ["pull, image, hub, docker"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "pull"
3
+description: "The pull command description and usage"
4
+keywords: ["pull, image, hub, docker"]
5
+---
10 6
 
11 7
 # pull
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "push"
4
-description = "The push command description and usage"
5
-keywords = ["share, push, image"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "push"
3
+description: "The push command description and usage"
4
+keywords: ["share, push, image"]
5
+---
10 6
 
11 7
 # push
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "rename"
4
-description = "The rename command description and usage"
5
-keywords = ["rename, docker, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "rename"
3
+description: "The rename command description and usage"
4
+keywords: ["rename, docker, container"]
5
+---
10 6
 
11 7
 # rename
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "restart"
4
-description = "The restart command description and usage"
5
-keywords = ["restart, container, Docker"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "restart"
3
+description: "The restart command description and usage"
4
+keywords: ["restart, container, Docker"]
5
+---
10 6
 
11 7
 # restart
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "rm"
4
-description = "The rm command description and usage"
5
-keywords = ["remove, Docker, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "rm"
3
+description: "The rm command description and usage"
4
+keywords: ["remove, Docker, container"]
5
+---
10 6
 
11 7
 # rm
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "rmi"
4
-description = "The rmi command description and usage"
5
-keywords = ["remove, image, Docker"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "rmi"
3
+description: "The rmi command description and usage"
4
+keywords: ["remove, image, Docker"]
5
+---
10 6
 
11 7
 # rmi
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "run"
4
-description = "The run command description and usage"
5
-keywords = ["run, command, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "run"
3
+description: "The run command description and usage"
4
+keywords: ["run, command, container"]
5
+---
10 6
 
11 7
 # run
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "save"
4
-description = "The save command description and usage"
5
-keywords = ["tarred, repository, backup"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "save"
3
+description: "The save command description and usage"
4
+keywords: ["tarred, repository, backup"]
5
+---
10 6
 
11 7
 # save
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "search"
4
-description = "The search command description and usage"
5
-keywords = ["search, hub, images"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "search"
3
+description: "The search command description and usage"
4
+keywords: ["search, hub, images"]
5
+---
10 6
 
11 7
 # search
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service create"
4
-description = "The service create command description and usage"
5
-keywords = ["service, create"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "service create"
3
+description: "The service create command description and usage"
4
+keywords: ["service, create"]
5
+---
10 6
 
11 7
 # service create
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service inspect"
4
-description = "The service inspect command description and usage"
5
-keywords = ["service, inspect"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "service inspect"
3
+description: "The service inspect command description and usage"
4
+keywords: ["service, inspect"]
5
+---
10 6
 
11 7
 # service inspect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service ls"
4
-description = "The service ls command description and usage"
5
-keywords = ["service, ls"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "service ls"
3
+description: "The service ls command description and usage"
4
+keywords: ["service, ls"]
5
+---
10 6
 
11 7
 # service ls
12 8
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service ps"
4
-description = "The service ps command description and usage"
5
-keywords = ["service, tasks", "ps"]
6
-aliases = ["/engine/reference/commandline/service_tasks/"]
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "service ps"
3
+description: "The service ps command description and usage"
4
+keywords: ["service, tasks", "ps"]
5
+aliases: ["/engine/reference/commandline/service_tasks/"]
6
+---
11 7
 
12 8
 # service ps
13 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service rm"
4
-description = "The service rm command description and usage"
5
-keywords = ["service, rm"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "service rm"
3
+description: "The service rm command description and usage"
4
+keywords: ["service, rm"]
5
+---
10 6
 
11 7
 # service rm
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service scale"
4
-description = "The service scale command description and usage"
5
-keywords = ["service, scale"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "service scale"
3
+description: "The service scale command description and usage"
4
+keywords: ["service, scale"]
5
+---
10 6
 
11 7
 # service scale
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "service update"
4
-description = "The service update command description and usage"
5
-keywords = ["service, update"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "service update"
3
+description: "The service update command description and usage"
4
+keywords: ["service, update"]
5
+---
10 6
 
11 7
 # service update
12 8
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stack config"
4
-description = "The stack config command description and usage"
5
-keywords = ["stack, config"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "stack config"
3
+description: "The stack config command description and usage"
4
+keywords: ["stack, config"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # stack config (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stack deploy"
4
-description = "The stack deploy command description and usage"
5
-keywords = ["stack, deploy, up"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "stack deploy"
3
+description: "The stack deploy command description and usage"
4
+keywords: ["stack, deploy, up"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # stack deploy (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stack ls"
4
-description = "The stack ls command description and usage"
5
-keywords = ["stack, ls"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "stack ls"
3
+description: "The stack ls command description and usage"
4
+keywords: ["stack, ls"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # stack ls (experimental)
13 9
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stack ps"
4
-description = "The stack ps command description and usage"
5
-keywords = ["stack, ps"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "stack ps"
3
+description: "The stack ps command description and usage"
4
+keywords: ["stack, ps"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # stack ps (experimental)
13 9
 
... ...
@@ -1,13 +1,11 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stack rm"
4
-description = "The stack rm command description and usage"
5
-keywords = ["stack, rm, remove, down"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "stack rm"
3
+description: "The stack rm command description and usage"
4
+keywords: ["stack, rm, remove, down"]
5
+advisory: "experimental"
6
+
7
+
8
+---
11 9
 
12 10
 # stack rm (experimental)
13 11
 
... ...
@@ -1,13 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stack services"
4
-description = "The stack services command description and usage"
5
-keywords = ["stack, services"]
6
-advisory = "experimental"
7
-[menu.main]
8
-parent = "smn_cli"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "stack services"
3
+description: "The stack services command description and usage"
4
+keywords: ["stack, services"]
5
+advisory: "experimental"
6
+---
11 7
 
12 8
 # stack services (experimental)
13 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "start"
4
-description = "The start command description and usage"
5
-keywords = ["Start, container, stopped"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "start"
3
+description: "The start command description and usage"
4
+keywords: ["Start, container, stopped"]
5
+---
10 6
 
11 7
 # start
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stats"
4
-description = "The stats command description and usage"
5
-keywords = ["container, resource, statistics"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "stats"
3
+description: "The stats command description and usage"
4
+keywords: ["container, resource, statistics"]
5
+---
10 6
 
11 7
 # stats
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "stop"
4
-description = "The stop command description and usage"
5
-keywords = ["stop, SIGKILL, SIGTERM"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "stop"
3
+description: "The stop command description and usage"
4
+keywords: ["stop, SIGKILL, SIGTERM"]
5
+---
10 6
 
11 7
 # stop
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "swarm init"
4
-description = "The swarm init command description and usage"
5
-keywords = ["swarm, init"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "swarm init"
3
+description: "The swarm init command description and usage"
4
+keywords: ["swarm, init"]
5
+---
10 6
 
11 7
 # swarm init
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "swarm join"
4
-description = "The swarm join command description and usage"
5
-keywords = ["swarm, join"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "swarm join"
3
+description: "The swarm join command description and usage"
4
+keywords: ["swarm, join"]
5
+---
10 6
 
11 7
 # swarm join
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "swarm join-token"
4
-description = "The swarm join-token command description and usage"
5
-keywords = ["swarm, join-token"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "swarm join-token"
3
+description: "The swarm join-token command description and usage"
4
+keywords: ["swarm, join-token"]
5
+---
10 6
 
11 7
 # swarm join-token
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "swarm leave"
4
-description = "The swarm leave command description and usage"
5
-keywords = ["swarm, leave"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "swarm leave"
3
+description: "The swarm leave command description and usage"
4
+keywords: ["swarm, leave"]
5
+---
10 6
 
11 7
 # swarm leave
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "swarm update"
4
-description = "The swarm update command description and usage"
5
-keywords = ["swarm, update"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "swarm update"
3
+description: "The swarm update command description and usage"
4
+keywords: ["swarm, update"]
5
+---
10 6
 
11 7
 # swarm update
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "system df"
4
-description = "The system df command description and usage"
5
-keywords = [system, data, usage, disk]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "system df"
3
+description: "The system df command description and usage"
4
+keywords: [system, data, usage, disk]
5
+---
10 6
 
11 7
 # system df
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "system prune"
4
-description = "Remove unused data"
5
-keywords = [system, prune, delete, remove]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "system prune"
3
+description: "Remove unused data"
4
+keywords: [system, prune, delete, remove]
5
+---
10 6
 
11 7
 # system prune
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "tag"
4
-description = "The tag command description and usage"
5
-keywords = ["tag, name, image"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "tag"
3
+description: "The tag command description and usage"
4
+keywords: ["tag, name, image"]
5
+---
10 6
 
11 7
 # tag
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "top"
4
-description = "The top command description and usage"
5
-keywords = ["container, running, processes"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "top"
3
+description: "The top command description and usage"
4
+keywords: ["container, running, processes"]
5
+---
10 6
 
11 7
 # top
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "unpause"
4
-description = "The unpause command description and usage"
5
-keywords = ["cgroups, suspend, container"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "unpause"
3
+description: "The unpause command description and usage"
4
+keywords: ["cgroups, suspend, container"]
5
+---
10 6
 
11 7
 # unpause
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "update"
4
-description = "The update command description and usage"
5
-keywords = ["resources, update, dynamically"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "update"
3
+description: "The update command description and usage"
4
+keywords: ["resources, update, dynamically"]
5
+---
10 6
 
11 7
 ## update
12 8
 
... ...
@@ -31,8 +27,8 @@ Options:
31 31
 ```
32 32
 
33 33
 The `docker update` command dynamically updates container configuration.
34
-You can use this command to prevent containers from consuming too many 
35
-resources from their Docker host.  With a single command, you can place 
34
+You can use this command to prevent containers from consuming too many
35
+resources from their Docker host.  With a single command, you can place
36 36
 limits on a single container or on many. To specify more than one container,
37 37
 provide space-separated list of container names or IDs.
38 38
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "version"
4
-description = "The version command description and usage"
5
-keywords = ["version, architecture, api"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "version"
3
+description: "The version command description and usage"
4
+keywords: ["version, architecture, api"]
5
+---
10 6
 
11 7
 # version
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "volume create"
4
-description = "The volume create command description and usage"
5
-keywords = ["volume, create"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "volume create"
3
+description: "The volume create command description and usage"
4
+keywords: ["volume, create"]
5
+---
10 6
 
11 7
 # volume create
12 8
 
... ...
@@ -57,7 +53,7 @@ different volume drivers may do different things (or nothing at all).
57 57
 The built-in `local` driver on Windows does not support any options.
58 58
 
59 59
 The built-in `local` driver on Linux accepts options similar to the linux `mount` command. You can provide multiple options by passing the `--opt` flag multiple times. Some `mount` options (such as the `o` option) can take a comma-separated list of options. Complete list of available mount options can be found [here](http://man7.org/linux/man-pages/man8/mount.8.html).
60
- 
60
+
61 61
 For example, the following creates a `tmpfs` volume called `foo` with a size of 100 megabyte and `uid` of 1000.
62 62
 
63 63
 ```bash
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "volume inspect"
4
-description = "The volume inspect command description and usage"
5
-keywords = ["volume, inspect"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "volume inspect"
3
+description: "The volume inspect command description and usage"
4
+keywords: ["volume, inspect"]
5
+---
10 6
 
11 7
 # volume inspect
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "volume ls"
4
-description = "The volume ls command description and usage"
5
-keywords = ["volume, list"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "volume ls"
3
+description: "The volume ls command description and usage"
4
+keywords: ["volume, list"]
5
+---
10 6
 
11 7
 # volume ls
12 8
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "volume prune"
4
-description = "Remove unused volumes"
5
-keywords = [volume, prune, delete]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "volume prune"
3
+description: "Remove unused volumes"
4
+keywords: [volume, prune, delete]
5
+---
10 6
 
11 7
 # volume prune
12 8
 
... ...
@@ -1,12 +1,9 @@
1
-<!--[metadata]>
2
-+++
3
-title = "volume rm"
4
-description = "the volume rm command description and usage"
5
-keywords = ["volume, rm"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "volume rm"
3
+description: "the volume rm command description and usage"
4
+keywords: ["volume, rm"]
5
+---
6
+
10 7
 
11 8
 # volume rm
12 9
 
... ...
@@ -1,12 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "wait"
4
-description = "The wait command description and usage"
5
-keywords = ["container, stop, wait"]
6
-[menu.main]
7
-parent = "smn_cli"
8
-+++
9
-<![end-metadata]-->
1
+---
2
+title: "wait"
3
+description: "The wait command description and usage"
4
+keywords: ["container, stop, wait"]
5
+---
10 6
 
11 7
 # wait
12 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Docker Glossary"
4
-description = "Glossary of terms used around Docker"
5
-keywords = ["glossary, docker, terms,  definitions"]
6
-[menu.main]
7
-parent = "mn_about"
8
-weight = "50"
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Docker Glossary"
3
+description: "Glossary of terms used around Docker"
4
+keywords: ["glossary, docker, terms,  definitions"]
5
+---
11 6
 
12 7
 # Glossary
13 8
 
... ...
@@ -1,14 +1,8 @@
1
-<!-- [metadata]>
2
-+++
3
-title = "Engine reference"
4
-description = "Docker Engine reference"
5
-keywords = ["Engine"]
6
-[menu.main]
7
-parent="engine_use"
8
-identifier="engine_ref"
9
-weight=70
10
-+++
11
-<![end-metadata]-->
1
+---
2
+title: "Engine reference"
3
+description: "Docker Engine reference"
4
+keywords: ["Engine"]
5
+---
12 6
 
13 7
 # Engine reference
14 8
 
... ...
@@ -1,13 +1,8 @@
1
-<!--[metadata]>
2
-+++
3
-title = "Docker run reference"
4
-description = "Configure containers at runtime"
5
-keywords = ["docker, run, configure,  runtime"]
6
-[menu.main]
7
-parent = "engine_ref"
8
-weight=-80
9
-+++
10
-<![end-metadata]-->
1
+---
2
+title: "Docker run reference"
3
+description: "Configure containers at runtime"
4
+keywords: ["docker, run, configure,  runtime"]
5
+---
11 6
 
12 7
 # Docker run reference
13 8
 
... ...
@@ -181,7 +176,7 @@ Images using the v2 or later image format have a content-addressable identifier
181 181
 called a digest. As long as the input used to generate the image is unchanged,
182 182
 the digest value is predictable and referenceable.
183 183
 
184
-The following example runs a container from the `alpine` image with the 
184
+The following example runs a container from the `alpine` image with the
185 185
 `sha256:9cacb71397b640eca97488cf08582ae4e4068513101088e9f96c9814bfda95e0` digest:
186 186
 
187 187
     $ docker run alpine@sha256:9cacb71397b640eca97488cf08582ae4e4068513101088e9f96c9814bfda95e0 date