Skip to content

Instantly share code, notes, and snippets.

@AmreeshTyagi
Created November 20, 2019 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AmreeshTyagi/9fd72e5d11f17dd501c5fbbe4953cb7e to your computer and use it in GitHub Desktop.
Save AmreeshTyagi/9fd72e5d11f17dd501c5fbbe4953cb7e to your computer and use it in GitHub Desktop.
netflix request visualizer - vizceral
#!/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