Skip to content

Instantly share code, notes, and snippets.

@MarekVigas
Created September 5, 2019 11:11
Show Gist options
  • Save MarekVigas/e5bc3f62200e1af61f9d87b43c30a818 to your computer and use it in GitHub Desktop.
Save MarekVigas/e5bc3f62200e1af61f9d87b43c30a818 to your computer and use it in GitHub Desktop.
Check if inside docker container
#!/bin/bash
if [ -f /.dockerenv ]; then
echo "I'm inside matrix ;(";
else
echo "I'm living in real world!";
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment