docker run -p 5000:3000 --name textWithVolume -t react-app -v $(pwd):/app
This command only shows this output in the logs:
v14.16.0
If I remove the volume flag and its value, the container will start as expected, with no volume.
Anybody knows what could be the issue and how to resolve it?
Thanks,