Skip to content

Instantly share code, notes, and snippets.

@roylee0704
Created December 9, 2016 08:24
Show Gist options
  • Save roylee0704/b5c8090e6cbfe1a9ae6c63062623a7cd to your computer and use it in GitHub Desktop.
Save roylee0704/b5c8090e6cbfe1a9ae6c63062623a7cd to your computer and use it in GitHub Desktop.
how to grep docker log
docker logs nginx 2>&1 | grep "127."
# ref: http://stackoverflow.com/questions/34724980/finding-a-string-in-docker-logs-of-container
@GoodbyeLittleD
Copy link

you are powerful

@CharlieUnderwood
Copy link

excellent!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! You are the one who knows "2>&1" well.

@adshrc
Copy link

adshrc commented Feb 27, 2024

if you get "grep: (standard input): binary file matches" error, when doing e.g. --since=48h, try this:

docker logs nginx 2>&1 | grep -a "127."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment