Browse code

Merge pull request #20190 from rhatdan/volumeMan

Add a parent man page for docker volumes command

Sebastiaan van Stijn authored on 2016/03/11 06:36:50
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,51 @@
0
+% DOCKER(1) Docker User Manuals
1
+% Docker Community
2
+% Feb 2016
3
+# NAME
4
+docker-volume - Create a new volume
5
+
6
+# SYNOPSIS
7
+**docker volume** [OPTIONS] COMMAND
8
+[**--help**]
9
+
10
+# DESCRIPTION
11
+
12
+docker volume has subcommands for managing data volumes.
13
+
14
+## Data volumes
15
+
16
+The `docker volume` command has subcommands for managing data volumes. A data volume is a specially-designated directory that by-passes storage driver management.
17
+
18
+Data volumes persist data independent of a container's life cycle. When you delete a container, the Engine daemon does not delete any data volumes. You can share volumes across multiple containers. Moreover, you can share data volumes with other computing resources in your system.
19
+
20
+To see help for a subcommand, use:
21
+
22
+```
23
+docker volume CMD help
24
+```
25
+
26
+For full details on using docker volume visit Docker's online documentation.
27
+
28
+# OPTIONS
29
+**--help**
30
+  Print usage statement
31
+
32
+# COMMANDS
33
+**create**
34
+  Create a volume
35
+  See **docker-volume-create(1)** for full documentation on the **create** command.
36
+
37
+**inspect**
38
+  Return low-level information on a volume
39
+  See **docker-volume-inspect(1)** for full documentation on the **inspect** command.
40
+
41
+**ls**
42
+  List volumes
43
+  See **docker-volume-ls(1)** for full documentation on the **ls** command.
44
+
45
+**rm**
46
+  Remove a volume
47
+  See **docker-volume-rm(1)** for full documentation on the **rm** command.
48
+
49
+# HISTORY
50
+Feb 2016, created by Dan Walsh <dwalsh@redhat.com>