Search Docker Hub
entrypoint-cmd-example
By skynewz
Really simple image to understand usage of `ENTRYPOINT` and `CMD` instructions
269
$ docker run -it --rm skynewz/entrypoint-cmd-example:latest $ docker run -it --rm skynewz/entrypoint-cmd-example:latest facebook.com
Take a look at the IP address 😉
FROM alpine ENTRYPOINT [ "ping", "-c", "4" ] CMD [ "google.fr" ]
Content type
Image
Digest
Size
2.7 MB
Last updated
about 7 years ago
docker pull skynewz/entrypoint-cmd-example