Browse code

Fix man pages

Add contents and fix format problem for man pages.

Signed-off-by: Zhang Wei <zhangwei555@huawei.com>

Zhang Wei authored on 2015/11/10 10:33:55
Showing 21 changed files
... ...
@@ -8,6 +8,9 @@ docker-cp - Copy files/folders between a container and the local filesystem.
8 8
 **docker cp**
9 9
 [**--help**]
10 10
 CONTAINER:PATH LOCALPATH|-
11
+
12
+**docker cp**
13
+[**--help**]
11 14
 LOCALPATH|- CONTAINER:PATH
12 15
 
13 16
 # DESCRIPTION
... ...
@@ -79,10 +79,10 @@ The initial status of the container created with **docker create** is 'created'.
79 79
 **--add-host**=[]
80 80
    Add a custom host-to-IP mapping (host:ip)
81 81
 
82
-**--blkio-weight**=0
82
+**--blkio-weight**=*0*
83 83
    Block IO weight (relative weight) accepts a weight value between 10 and 1000.
84 84
 
85
-**--cpu-shares**=0
85
+**--cpu-shares**=*0*
86 86
    CPU shares (relative weight)
87 87
 
88 88
 **--cap-add**=[]
... ...
@@ -97,7 +97,7 @@ The initial status of the container created with **docker create** is 'created'.
97 97
 **--cidfile**=""
98 98
    Write the container ID to the file
99 99
 
100
-**--cpu-period**=0
100
+**--cpu-period**=*0*
101 101
     Limit the CPU CFS (Completely Fair Scheduler) period
102 102
 
103 103
 **--cpuset-cpus**=""
... ...
@@ -110,7 +110,7 @@ The initial status of the container created with **docker create** is 'created'.
110 110
 then processes in your Docker container will only use memory from the first
111 111
 two memory nodes.
112 112
 
113
-**--cpu-quota**=0
113
+**--cpu-quota**=*0*
114 114
    Limit the CPU CFS (Completely Fair Scheduler) quota
115 115
 
116 116
 **--device**=[]
... ...
@@ -173,7 +173,7 @@ millions of trillions.
173 173
    Add link to another container in the form of <name or id>:alias or just
174 174
    <name or id> in which case the alias will match the name.
175 175
 
176
-**--log-driver**="|*json-file*|*syslog*|*journald*|*gelf*|*fluentd*|*awslogs*|*splunk*|*none*"
176
+**--log-driver**="*json-file*|*syslog*|*journald*|*gelf*|*fluentd*|*awslogs*|*splunk*|*none*"
177 177
   Logging driver for container. Default is defined by daemon `--log-driver` flag.
178 178
   **Warning**: the `docker logs` command works only for the `json-file` and
179 179
   `journald` logging drivers.
... ...
@@ -214,7 +214,7 @@ This value should always larger than **-m**, so you should always use this with
214 214
 **--name**=""
215 215
    Assign a name to the container
216 216
 
217
-**--net**="bridge"
217
+**--net**="*bridge*"
218 218
    Set the Network mode for the container
219 219
                                'bridge': creates a new network stack for the container on the docker bridge
220 220
                                'none': no networking for this container
... ...
@@ -234,7 +234,7 @@ This value should always larger than **-m**, so you should always use this with
234 234
                                When specifying ranges for both, the number of container ports in the range must match the number of host ports in the range. (e.g., `-p 1234-1236:1234-1236/tcp`)
235 235
                                (use 'docker port' to see the actual mapping)
236 236
 
237
-**--pid**=host
237
+**--pid**=*host*
238 238
    Set the PID mode for the container
239 239
      **host**: use the host's PID namespace inside the container.
240 240
      Note: the host mode gives the container full access to local PID and is therefore considered insecure.
... ...
@@ -245,13 +245,13 @@ This value should always larger than **-m**, so you should always use this with
245 245
 **--read-only**=*true*|*false*
246 246
    Mount the container's root filesystem as read only.
247 247
 
248
-**--restart**="no"
248
+**--restart**="*no*"
249 249
    Restart policy to apply when a container exits (no, on-failure[:max-retry], always, unless-stopped).
250 250
 
251 251
 **--security-opt**=[]
252 252
    Security Options
253 253
 
254
-**--stop-signal**=SIGTERM
254
+**--stop-signal**=*SIGTERM*
255 255
   Signal to stop a container. Default is SIGTERM.
256 256
 
257 257
 **-t**, **--tty**=*true*|*false*
... ...
@@ -263,7 +263,7 @@ This value should always larger than **-m**, so you should always use this with
263 263
 **--ulimit**=[]
264 264
    Ulimit options
265 265
 
266
-**--uts**=host
266
+**--uts**=*host*
267 267
    Set the UTS mode for the container
268 268
      **host**: use the host's UTS namespace inside the container.
269 269
      Note: the host mode gives the container access to changing the host's hostname and is therefore considered insecure.
... ...
@@ -130,7 +130,7 @@ format.
130 130
 **-g**, **--graph**=""
131 131
   Path to use as the root of the Docker runtime. Default is `/var/lib/docker`.
132 132
 
133
-**-H**, **--host**=[unix:///var/run/docker.sock]: tcp://[host:port] to bind or
133
+**-H**, **--host**=[*unix:///var/run/docker.sock*]: tcp://[host:port] to bind or
134 134
 unix://[/path/to/socket] to use.
135 135
   The socket(s) to bind to in daemon mode specified using one or more
136 136
   tcp://host:port, unix:///path/to/socket, fd://* or fd://socketfd.
... ...
@@ -165,7 +165,7 @@ unix://[/path/to/socket] to use.
165 165
 **--ipv6**=*true*|*false*
166 166
   Enable IPv6 support. Default is false. Docker will create an IPv6-enabled bridge with address fe80::1 which will allow you to create IPv6-enabled containers. Use together with `--fixed-cidr-v6` to provide globally routable IPv6 addresses. IPv6 forwarding will be enabled if not used with `--ip-forward=false`. This may collide with your host's current IPv6 settings. For more information please consult the documentation about "Advanced Networking - IPv6".
167 167
 
168
-**-l**, **--log-level**="*debug*|*info*|*warn*|*error*|*fatal*""
168
+**-l**, **--log-level**="*debug*|*info*|*warn*|*error*|*fatal*"
169 169
   Set the logging level. Default is `info`.
170 170
 
171 171
 **--label**="[]"
... ...
@@ -178,13 +178,13 @@ unix://[/path/to/socket] to use.
178 178
 **--log-opt**=[]
179 179
   Logging driver specific options.
180 180
 
181
-**--mtu**=VALUE
181
+**--mtu**=*0*
182 182
   Set the containers network mtu. Default is `0`.
183 183
 
184 184
 **-p**, **--pidfile**=""
185 185
   Path to use for daemon PID file. Default is `/var/run/docker.pid`
186 186
 
187
-**--registry-mirror**=<scheme>://<host>
187
+**--registry-mirror**=*<scheme>://<host>*
188 188
   Prepend a registry mirror to be used for image pulls. May be specified multiple times.
189 189
 
190 190
 **-s**, **--storage-driver**=""
... ...
@@ -199,13 +199,13 @@ unix://[/path/to/socket] to use.
199 199
 **--tls**=*true*|*false*
200 200
   Use TLS; implied by --tlsverify. Default is false.
201 201
 
202
-**--tlscacert**=~/.docker/ca.pem
202
+**--tlscacert**=*~/.docker/ca.pem*
203 203
   Trust certs signed only by this CA.
204 204
 
205
-**--tlscert**=~/.docker/cert.pem
205
+**--tlscert**=*~/.docker/cert.pem*
206 206
   Path to TLS certificate file.
207 207
 
208
-**--tlskey**=~/.docker/key.pem
208
+**--tlskey**=*~/.docker/key.pem*
209 209
   Path to TLS key file.
210 210
 
211 211
 **--tlsverify**=*true*|*false*
... ...
@@ -26,10 +26,10 @@ each result.
26 26
 **-f**, **--format**=""
27 27
     Format the output using the given Go template.
28 28
 
29
-**-s**, **--size**=false
29
+**-s**, **--size**=*false*
30 30
     Display total file sizes if the type is container.
31 31
 
32
-**--type**=*container*|*image*
32
+**--type**="*container*|*image*"
33 33
     Return JSON for specified type, permissible values are "image" or "container"
34 34
 
35 35
 # EXAMPLES
... ...
@@ -19,7 +19,7 @@ The main process inside each container specified will be sent SIGKILL,
19 19
 **--help**
20 20
   Print usage statement
21 21
 
22
-**-s**, **--signal**="KILL"
22
+**-s**, **--signal**="*KILL*"
23 23
    Signal to send to the container
24 24
 
25 25
 # HISTORY
... ...
@@ -39,7 +39,7 @@ logging drivers.
39 39
 **-t**, **--timestamps**=*true*|*false*
40 40
    Show timestamps. The default is *false*.
41 41
 
42
-**--tail**="all"
42
+**--tail**="*all*"
43 43
    Output the specified number of lines at the end of logs (defaults to all logs)
44 44
 
45 45
 The `--since` option shows only the container logs generated after
... ...
@@ -5,9 +5,9 @@
5 5
 docker-network-connect - connect a container to a network
6 6
 
7 7
 # SYNOPSIS
8
-**docker network connect NAME CONTAINER**
9
-
8
+**docker network connect**
10 9
 [**--help**]
10
+NETWORK CONTAINER
11 11
 
12 12
 # DESCRIPTION
13 13
 
... ...
@@ -42,8 +42,8 @@ You can connect a container to one or more networks. The networks need not be th
42 42
 
43 43
 
44 44
 # OPTIONS
45
-**NAME**
46
-  Specify network driver name
45
+**NETWORK**
46
+  Specify network name
47 47
 
48 48
 **CONTAINER**
49 49
   Specify container name
... ...
@@ -6,15 +6,15 @@ docker-network-create - create a new network
6 6
 
7 7
 # SYNOPSIS
8 8
 **docker network create**
9
-
10
-**--aux-address=map[]**    
11
-**-d** | **--driver=DRIVER**       
12
-**--gateway=[]**             
13
-**--help=false**             
14
-**--ip-range=[]**            
15
-**--ipam-driver=default**    
16
-**-o** | **--opt=map[]**           
17
-**--subnet=[]**              
9
+[**--aux-address**=*map[]*]
10
+[**-d**|**--driver**=*DRIVER*]
11
+[**--gateway**=*[]*]
12
+[**--help**]
13
+[**--ip-range**=*[]*]
14
+[**--ipam-driver**=*default*]
15
+[**-o**|**--opt**=*map[]*]
16
+[**--subnet**=*[]*]
17
+NETWORK-NAME
18 18
 
19 19
 # DESCRIPTION
20 20
 
... ...
@@ -97,7 +97,7 @@ specify subnetwork values directly using the the `--subnet` option. On a
97 97
 `bridge` network you can only create a single subnet:
98 98
 
99 99
 ```bash
100
-docker network create -d --subnet=192.168.0.0/16
100
+docker network create -d bridge --subnet=192.168.0.0/16 br0
101 101
 ```
102 102
 Additionally, you also specify the `--gateway` `--ip-range` and `--aux-address` options.
103 103
 
... ...
@@ -121,28 +121,28 @@ docker network create -d overlay
121 121
 Be sure that your subnetworks do not overlap. If they do, the network create fails and Engine returns an error.
122 122
 
123 123
 # OPTIONS
124
-**--aux-address=map[]**     
124
+**--aux-address**=map[]
125 125
   Auxiliary ipv4 or ipv6 addresses used by network driver
126 126
 
127
-**-d** | **--driver=DRIVER**       
127
+**-d**, **--driver**=*DRIVER*
128 128
   Driver to manage the Network bridge or overlay. The default is bridge.
129 129
 
130
-**--gateway=[] **            
130
+**--gateway**=[]
131 131
   ipv4 or ipv6 Gateway for the master subnet
132 132
 
133
-**--help=false **            
133
+**--help**
134 134
   Print usage
135 135
 
136
-**--ip-range=[] **           
136
+**--ip-range**=[]
137 137
   Allocate container ip from a sub-range
138 138
 
139
-**--ipam-driver=default **   
139
+**--ipam-driver**=*default*
140 140
   IP Address Management Driver
141 141
 
142
-**-o | --opt=map[]**           
142
+**-o**, **--opt**=map[]
143 143
   Set custom network plugin options
144 144
 
145
-**--subnet=[]**              
145
+**--subnet**=[]
146 146
   Subnet in CIDR format that represents a network segment
147 147
 
148 148
 # HISTORY
... ...
@@ -5,9 +5,9 @@
5 5
 docker-network-disconnect - disconnect a container from a network
6 6
 
7 7
 # SYNOPSIS
8
-**docker network disconnect NETWORK CONTAINER**
9
-
8
+**docker network disconnect**
10 9
 [**--help**]
10
+NETWORK CONTAINER
11 11
 
12 12
 # DESCRIPTION
13 13
 
... ...
@@ -5,9 +5,9 @@
5 5
 docker-network-inspect - inspect a network
6 6
 
7 7
 # SYNOPSIS
8
-**docker network inspect NETWORK [NETWORK...]**
9
-
8
+**docker network inspect**
10 9
 [**--help**]
10
+NETWORK [NETWORK...]
11 11
 
12 12
 # DESCRIPTION
13 13
 
... ...
@@ -6,9 +6,8 @@ docker-network-ls - list networks
6 6
 
7 7
 # SYNOPSIS
8 8
 **docker network ls**
9
-
10
-[**--no-trunc**]
11
-[**-q** | **--quiet**]
9
+[**--no-trunc**[=*true*|*false*]]
10
+[**-q**|**--quiet**[=*true*|*false*]]
12 11
 [**--help**]
13 12
 
14 13
 # DESCRIPTION
... ...
@@ -38,10 +37,10 @@ c288470c46f6c8949c5f7e5099b5b7947b07eabe8d9a27d79a9cbf111adcbf47   host
38 38
 
39 39
 # OPTIONS
40 40
 
41
-[**--no-trunc**]
41
+**--no-trunc**=*true*|*false*
42 42
   Do not truncate the output
43 43
 
44
-[**-q** | **--quiet**]
44
+**-q**, **--quiet**=*true*|*false*
45 45
   Only display numeric IDs
46 46
 
47 47
 **--help**
... ...
@@ -5,9 +5,9 @@
5 5
 docker-network-rm - remove a new network
6 6
 
7 7
 # SYNOPSIS
8
-**docker network rm NETWORK**
9
-
8
+**docker network rm**
10 9
 [**--help**]
10
+NETWORK
11 11
 
12 12
 # DESCRIPTION
13 13
 
... ...
@@ -17,7 +17,6 @@ Removes a network by name or identifier. To remove a network, you must first dis
17 17
   $ docker network rm my-network
18 18
 ```
19 19
 
20
-
21 20
 # OPTIONS
22 21
 **NETWORK**
23 22
   Specify network name
... ...
@@ -40,7 +40,7 @@ the running containers.
40 40
                           ancestor=(<image-name>[:tag]|<image-id>|<image@digest>) - filters containers that were
41 41
                           created from the given image or a descendant.
42 42
 
43
-**--format**=*"TEMPLATE"*
43
+**--format**="*TEMPLATE*"
44 44
    Pretty-print containers using a Go template.
45 45
    Valid placeholders:
46 46
       .ID - Container ID
... ...
@@ -60,7 +60,7 @@ the running containers.
60 60
 **-l**, **--latest**=*true*|*false*
61 61
    Show only the latest created container, include non-running ones. The default is *false*.
62 62
 
63
-**-n**=-1
63
+**-n**=*-1*
64 64
    Show n last created containers, include non-running ones.
65 65
 
66 66
 **--no-trunc**=*true*|*false*
... ...
@@ -17,7 +17,7 @@ Restart each container listed.
17 17
 **--help**
18 18
   Print usage statement
19 19
 
20
-**-t**, **--time**=10
20
+**-t**, **--time**=*10*
21 21
    Number of seconds to try to stop for before killing the container. Once killed it will then be restarted. Default is 10 seconds.
22 22
 
23 23
 # HISTORY
... ...
@@ -96,10 +96,10 @@ each of stdin, stdout, and stderr.
96 96
    Add a line to /etc/hosts. The format is hostname:ip.  The **--add-host**
97 97
 option can be set multiple times.
98 98
 
99
-**--blkio-weight**=0
99
+**--blkio-weight**=*0*
100 100
    Block IO weight (relative weight) accepts a weight value between 10 and 1000.
101 101
 
102
-**--cpu-shares**=0
102
+**--cpu-shares**=*0*
103 103
    CPU shares (relative weight)
104 104
 
105 105
    By default, all containers get the same proportion of CPU cycles. This proportion
... ...
@@ -147,7 +147,7 @@ division of CPU shares:
147 147
 **--cidfile**=""
148 148
    Write the container ID to the file
149 149
 
150
-**--cpu-period**=0
150
+**--cpu-period**=*0*
151 151
    Limit the CPU CFS (Completely Fair Scheduler) period
152 152
 
153 153
    Limit the container's CPU usage. This flag tell the kernel to restrict the container's CPU usage to the period you specify.
... ...
@@ -162,7 +162,7 @@ division of CPU shares:
162 162
 then processes in your Docker container will only use memory from the first
163 163
 two memory nodes.
164 164
 
165
-**--cpu-quota**=0
165
+**--cpu-quota**=*0*
166 166
    Limit the CPU CFS (Completely Fair Scheduler) quota
167 167
 
168 168
    Limit the container's CPU usage. By default, containers run with the full
... ...
@@ -273,7 +273,7 @@ container can access the exposed port via a private networking interface. Docker
273 273
 will set some environment variables in the client container to help indicate
274 274
 which interface and port to use.
275 275
 
276
-**--log-driver**="|*json-file*|*syslog*|*journald*|*gelf*|*fluentd*|*awslogs*|*splunk*|*none*"
276
+**--log-driver**="*json-file*|*syslog*|*journald*|*gelf*|*fluentd*|*awslogs*|*splunk*|*none*"
277 277
   Logging driver for container. Default is defined by daemon `--log-driver` flag.
278 278
   **Warning**: the `docker logs` command works only for the `json-file` and
279 279
   `journald` logging drivers.
... ...
@@ -326,7 +326,7 @@ string name. The name is useful when defining links (see **--link**) (or any
326 326
 other place you need to identify a container). This works for both background
327 327
 and foreground Docker containers.
328 328
 
329
-**--net**="bridge"
329
+**--net**="*bridge*"
330 330
    Set the Network mode for the container
331 331
                                'bridge': creates a new network stack for the container on the docker bridge
332 332
                                'none': no networking for this container
... ...
@@ -358,12 +358,12 @@ but not `docker run -p 1230-1236:1230-1240 --name RangeContainerPortsBiggerThanR
358 358
 With ip: `docker run -p 127.0.0.1:$HOSTPORT:$CONTAINERPORT --name CONTAINER -t someimage`
359 359
 Use `docker port` to see the actual mapping: `docker port CONTAINER $CONTAINERPORT`
360 360
 
361
-**--pid**=host
361
+**--pid**=*host*
362 362
    Set the PID mode for the container
363 363
      **host**: use the host's PID namespace inside the container.
364 364
      Note: the host mode gives the container full access to local PID and is therefore considered insecure.
365 365
 
366
-**--uts**=host
366
+**--uts**=*host*
367 367
    Set the UTS mode for the container
368 368
      **host**: use the host's UTS namespace inside the container.
369 369
      Note: the host mode gives the container access to changing the host's hostname and is therefore considered insecure.
... ...
@@ -388,7 +388,7 @@ outside of a container on the host.
388 388
 to write files anywhere.  By specifying the `--read-only` flag the container will have
389 389
 its root filesystem mounted as read only prohibiting any writes.
390 390
 
391
-**--restart**="no"
391
+**--restart**="*no*"
392 392
    Restart policy to apply when a container exits (no, on-failure[:max-retry], always, unless-stopped).
393 393
 
394 394
 **--rm**=*true*|*false*
... ...
@@ -403,7 +403,7 @@ its root filesystem mounted as read only prohibiting any writes.
403 403
     "label:level:LEVEL" : Set the label level for the container
404 404
     "label:disable"     : Turn off label confinement for the container
405 405
 
406
-**--stop-signal**=SIGTERM
406
+**--stop-signal**=*SIGTERM*
407 407
   Signal to stop a container. Default is SIGTERM.
408 408
 
409 409
 **--sig-proxy**=*true*|*false*
... ...
@@ -430,7 +430,7 @@ standard input.
430 430
 
431 431
    Without this argument the command will be run as root in the container.
432 432
 
433
-""--ulimit""=[]
433
+**--ulimit**=[]
434 434
     Ulimit options
435 435
 
436 436
 **-v**, **--volume**=[] Create a bind mount
... ...
@@ -30,7 +30,7 @@ of stars awarded, whether the image is official, and whether it is automated.
30 30
 **--no-trunc**=*true*|*false*
31 31
    Don't truncate output. The default is *false*.
32 32
 
33
-**-s**, **--stars**=X
33
+**-s**, **--stars**=*X*
34 34
    Only displays with at least X stars. The default is zero.
35 35
 
36 36
 # EXAMPLES
... ...
@@ -22,8 +22,8 @@ Display a live stream of one or more containers' resource usage statistics
22 22
 **--help**
23 23
   Print usage statement
24 24
 
25
-**--no-stream**="false"
26
-  Disable streaming stats and only pull the first result
25
+**--no-stream**=*true*|*false*
26
+  Disable streaming stats and only pull the first result, default setting is false.
27 27
 
28 28
 # EXAMPLES
29 29
 
... ...
@@ -18,7 +18,7 @@ Stop a container (Send SIGTERM, and then SIGKILL after
18 18
 **--help**
19 19
   Print usage statement
20 20
 
21
-**-t**, **--time**=10
21
+**-t**, **--time**=*10*
22 22
   Number of seconds to wait for the container to stop before killing it. Default is 10 seconds.
23 23
 
24 24
 #See also
... ...
@@ -39,7 +39,7 @@ different volume drivers may do different things (or nothing at all).
39 39
 *Note*: The built-in `local` volume driver does not currently accept any options.
40 40
 
41 41
 # OPTIONS
42
-**-d**, **--driver**="local"
42
+**-d**, **--driver**="*local*"
43 43
   Specify volume driver name
44 44
 
45 45
 **--help**
... ...
@@ -23,7 +23,7 @@ There is a single supported filter `dangling=value` which takes a boolean of `tr
23 23
 **--help**
24 24
   Print usage statement
25 25
 
26
-**-q**, **--quiet**=false
26
+**-q**, **--quiet**=*true*|*false*
27 27
   Only display volume names
28 28
 
29 29
 # HISTORY
... ...
@@ -7,9 +7,9 @@ docker \- Docker image and container command line interface
7 7
 # SYNOPSIS
8 8
 **docker** [OPTIONS] COMMAND [arg...]
9 9
 
10
-**docker** daemon [ --help | ... ]
10
+**docker** daemon [--help|...]
11 11
 
12
-**docker** [ --help | -v | --version ]
12
+**docker** [--help|-v|--version]
13 13
 
14 14
 # DESCRIPTION
15 15
 **docker** has two distinct functions. It is used for starting the Docker
... ...
@@ -36,26 +36,26 @@ To see the man page for a command run **man docker <command>**.
36 36
 **-D**, **--debug**=*true*|*false*
37 37
   Enable debug mode. Default is false.
38 38
 
39
-**-H**, **--host**=[unix:///var/run/docker.sock]: tcp://[host]:[port][path] to bind or
39
+**-H**, **--host**=[*unix:///var/run/docker.sock*]: tcp://[host]:[port][path] to bind or
40 40
 unix://[/path/to/socket] to use.
41 41
   The socket(s) to bind to in daemon mode specified using one or more
42 42
   tcp://host:port/path, unix:///path/to/socket, fd://* or fd://socketfd.
43 43
   If the tcp port is not specified, then it will default to either `2375` when
44 44
   `--tls` is off, or `2376` when `--tls` is on, or `--tlsverify` is specified.
45 45
 
46
-**-l**, **--log-level**="*debug*|*info*|*warn*|*error*|*fatal*""
46
+**-l**, **--log-level**="*debug*|*info*|*warn*|*error*|*fatal*"
47 47
   Set the logging level. Default is `info`.
48 48
 
49 49
 **--tls**=*true*|*false*
50 50
   Use TLS; implied by --tlsverify. Default is false.
51 51
 
52
-**--tlscacert**=~/.docker/ca.pem
52
+**--tlscacert**=*~/.docker/ca.pem*
53 53
   Trust certs signed only by this CA.
54 54
 
55
-**--tlscert**=~/.docker/cert.pem
55
+**--tlscert**=*~/.docker/cert.pem*
56 56
   Path to TLS certificate file.
57 57
 
58
-**--tlskey**=~/.docker/key.pem
58
+**--tlskey**=*~/.docker/key.pem*
59 59
   Path to TLS key file.
60 60
 
61 61
 **--tlsverify**=*true*|*false*