I am using base image ibmcom/mq which uses ENTRYPOINT
to execute its process:
ENTRYPOINT ["mq.sh"]
If in my Dockerfile
I use CMD
the parent image works fine, but my CMD doesn't seem to be executed. If in my Dockerfile
I use ENTRYPOINT
my command is running but then the parent ENTRYPOINT
doesn't seem to be running.
What am i missing here?