Update documentation for entrypoint unset with `docker run/create`

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
master
Yong Tang 2016-08-05 15:00:41 -07:00 committed by Tibor Vass
parent 86315be2f0
commit 68ea0dc2d0
1 changed files with 4 additions and 0 deletions

View File

@ -1305,6 +1305,10 @@ or two examples of how to pass more parameters to that ENTRYPOINT:
$ docker run -it --entrypoint /bin/bash example/redis -c ls -l
$ docker run -it --entrypoint /usr/bin/redis-cli example/redis --help
You can reset a containers entrypoint by passing an empty string, for example:
$ docker run -it --entrypoint="" mysql bash
> **Note**: Passing `--entrypoint` will clear out any default command set on the
> image (i.e. any `CMD` instruction in the Dockerfile used to build it).