docker-exec.md needs to be renamed in order to build man page.
Should be docker-exec.1.md
Docker-DCO-1.1-Signed-off-by: Dan Walsh <dwalsh@redhat.com> (github: rhatdan)
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,29 @@ |
| 0 |
+% DOCKER(1) Docker User Manuals |
|
| 1 |
+% Docker Community |
|
| 2 |
+% SEPT 2014 |
|
| 3 |
+# NAME |
|
| 4 |
+docker-exec - Run a command in an active container |
|
| 5 |
+ |
|
| 6 |
+# SYNOPSIS |
|
| 7 |
+**docker exec** |
|
| 8 |
+[**-d**|**--detach**[=*false*]] |
|
| 9 |
+[**-i**|**--interactive**[=*false*]] |
|
| 10 |
+[**-t**|**--tty**[=*false*]] |
|
| 11 |
+ CONTAINER COMMAND [ARG...] |
|
| 12 |
+ |
|
| 13 |
+# DESCRIPTION |
|
| 14 |
+ |
|
| 15 |
+Run a process in an existing container. The existing CONTAINER needs to be active. |
|
| 16 |
+ |
|
| 17 |
+# Options |
|
| 18 |
+ |
|
| 19 |
+**-d**, **--detach**=*true*|*false* |
|
| 20 |
+ Detached mode. This runs the new process in the background. |
|
| 21 |
+ |
|
| 22 |
+**-i**, **--interactive**=*true*|*false* |
|
| 23 |
+ When set to true, keep STDIN open even if not attached. The default is false. |
|
| 24 |
+ |
|
| 25 |
+**-t**, **--tty**=*true*|*false* |
|
| 26 |
+ When set to true Docker can allocate a pseudo-tty and attach to the standard |
|
| 27 |
+input of the process. This can be used, for example, to run a throwaway |
|
| 28 |
+interactive shell. The default value is false. |
| 0 | 29 |
deleted file mode 100644 |
| ... | ... |
@@ -1,29 +0,0 @@ |
| 1 |
-% DOCKER(1) Docker User Manuals |
|
| 2 |
-% Docker Community |
|
| 3 |
-% SEPT 2014 |
|
| 4 |
-# NAME |
|
| 5 |
-docker-exec - Run a command in an active container |
|
| 6 |
- |
|
| 7 |
-# SYNOPSIS |
|
| 8 |
-**docker exec** |
|
| 9 |
-[**-d**|**--detach**[=*false*]] |
|
| 10 |
-[**-i**|**--interactive**[=*false*]] |
|
| 11 |
-[**-t**|**--tty**[=*false*]] |
|
| 12 |
- CONTAINER COMMAND [ARG...] |
|
| 13 |
- |
|
| 14 |
-# DESCRIPTION |
|
| 15 |
- |
|
| 16 |
-Run a process in an existing container. The existing CONTAINER needs to be active. |
|
| 17 |
- |
|
| 18 |
-# Options |
|
| 19 |
- |
|
| 20 |
-**-d**, **--detach**=*true*|*false* |
|
| 21 |
- Detached mode. This runs the new process in the background. |
|
| 22 |
- |
|
| 23 |
-**-i**, **--interactive**=*true*|*false* |
|
| 24 |
- When set to true, keep STDIN open even if not attached. The default is false. |
|
| 25 |
- |
|
| 26 |
-**-t**, **--tty**=*true*|*false* |
|
| 27 |
- When set to true Docker can allocate a pseudo-tty and attach to the standard |
|
| 28 |
-input of the process. This can be used, for example, to run a throwaway |
|
| 29 |
-interactive shell. The default value is false. |