CMD provides defaults for an executing container


There are three ways to specify a CMD: the (preferred) exec form

CMD ["executable", "param1", "param2"]

as default parameters to ENTRYPOINT:
CMD ["param1","param2"]

and in shell form
CMD command param1 param2