I put my Symfony project into Docker, using a volume for my code. I want to user a php command (php app/console doctrine:generate:entities MyBundle:MyEntity to be precise).
When I try to use my php command outside docker, where my code is, nothing happen. But when I connect myself into my docker, the php command is running well.
Do you know why my php command is not working outside my docker ?
Thanks :)