Fix typo in reference doc for docker

Signed-off-by: Craig Osterhou <craig.osterhout@docker.com>

Signed-off-by: craig-osterhout <craig.osterhout@docker.com>
This commit is contained in:
craig-osterhout 2023-01-23 13:51:25 -08:00
parent 5f9c58ffa0
commit 551c4e9ab9
No known key found for this signature in database
GPG Key ID: 497A5E49261C73B5
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.
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