Created
November 20, 2019 06:18
-
-
Save AmreeshTyagi/9fd72e5d11f17dd501c5fbbe4953cb7e to your computer and use it in GitHub Desktop.
netflix request visualizer - vizceral
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Based on https://github.com/Netflix/vizceral-example | |
# Usage: make script executable | |
# chmod +x netflix-request-visualizer-example.sh | |
# ./netflix-request-visualizer-example.sh | |
# Navigate to http://localhost:41911 | |
# Author: Amreesh Tyagi | |
# Country: India | |
if [ -x "$(command -v docker)" ]; then | |
echo "Docker is installed." | |
echo "$(docker -v)" | |
docker run -p 41911:8080 -d amreeshtyagi/vizceral-example:0.1 | |
else | |
echo "Please install docker" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment