Le ENTRYPOINT
Specifica un comando che sarà sempre eseguito quando il contenitore si avvia.
Gli CMD
argomenti specifica che saranno alimentati al ENTRYPOINT
.
Se si desidera creare un'immagine dedicata a un comando specifico che verrà utilizzato ENTRYPOINT ["/path/dedicated_command"]
Altrimenti, se si desidera creare un'immagine per scopi generali, è possibile lasciare ENTRYPOINT
non specificato e utilizzare CMD ["/path/dedicated_command"]
poiché sarà possibile ignorare l'impostazione fornendo argomenti a docker run
.
Ad esempio, se il Dockerfile è:
FROM debian:wheezy
ENTRYPOINT ["/bin/ping"]
CMD ["localhost"]
L'esecuzione dell'immagine senza alcun argomento eseguirà il ping dell'host locale:
$ docker run -it test
PING localhost (127.0.0.1): 48 data bytes
56 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.096 ms
56 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.088 ms
56 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.088 ms
^C--- localhost ping statistics ---
3 packets transmitted, 3 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.088/0.091/0.096/0.000 ms
Ora, l'esecuzione dell'immagine con un argomento eseguirà il ping dell'argomento:
$ docker run -it test google.com
PING google.com (173.194.45.70): 48 data bytes
56 bytes from 173.194.45.70: icmp_seq=0 ttl=55 time=32.583 ms
56 bytes from 173.194.45.70: icmp_seq=2 ttl=55 time=30.327 ms
56 bytes from 173.194.45.70: icmp_seq=4 ttl=55 time=46.379 ms
^C--- google.com ping statistics ---
5 packets transmitted, 3 packets received, 40% packet loss
round-trip min/avg/max/stddev = 30.327/36.430/46.379/7.095 ms
Per fare un confronto, se il Dockerfile è:
FROM debian:wheezy
CMD ["/bin/ping", "localhost"]
L'esecuzione dell'immagine senza alcun argomento eseguirà il ping dell'host locale:
$ docker run -it test
PING localhost (127.0.0.1): 48 data bytes
56 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.076 ms
56 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.087 ms
56 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.090 ms
^C--- localhost ping statistics ---
3 packets transmitted, 3 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.076/0.084/0.090/0.000 ms
Ma eseguendo l'immagine con un argomento verrà eseguito l'argomento:
docker run -it test bash
root@e8bb7249b843:/#
Vedi questo articolo di Brian DeHamer per ulteriori dettagli:
https://www.ctl.io/developers/blog/post/dockerfile-entrypoint-vs-cmd/