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
commit 645395cc77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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