Merge pull request #3987 from craig-osterhout/fix-exec-doc-typo

Fix typo in reference doc for docker exec
This commit is contained in:
Sebastiaan van Stijn
2023-01-24 08:41:29 +01:00
committed by GitHub

View File

@ -37,7 +37,7 @@ has a custom directory specified with the WORKDIR directive in its Dockerfile,
this directory is used instead.
COMMAND must be an executable. A chained or a quoted command does not work.
For example, `docker exec -it my_container sh -c "echo a && echo b"` works,
For example, `docker exec -it my_container sh -c "echo a && echo b"` does
work, but `docker exec -it my_container "echo a && echo b"` does not.
## Examples