I am trying to run two commands in the docker cmd
following the instruction here this is my docker file
FROM mongo:5.0.14
CMD mongod;touch /tmp/testfile
Actually, I am trying to override the CMD in here
The reason I am trying to do this experiment is that I want to seed my mongodb without having another helper container as explained here
I want to run the mongoimport in the docker run stage
however, what I explained above is not working. what is the problem?