What is the best way to find a specific string in the logs of a docker container? Let\'s say I want to see all requests, that are made in the \"nginx\" docker image that came fr
Run following command to extract container name for image nginx -
docker ps --filter ancestor=nginx
Copy container ID from last command & then extract log path for your container through below command
grep "127." `docker inspect --format={{.LogPath}} `