This repository has been archived. The active project is now located at StackQL Jupyter Demo
Query cloud inventory and perform analysis and visualisations using Jupyter and Python.
- Docker
- Clone this repo
git clone https://github.com/infraql/infraql-jupyter-demo
- Add the appropriate service account key for your environment to the
keys/
directory - Build the image:
docker build --no-cache -t infraql-jupyter-demo .
- Run the image:
docker run -dp 8888:8888 infraql-jupyter-demo start-notebook.sh --NotebookApp.token=''
Add authentication if running this on a server which is accessible to others, see https://jupyter-notebook.readthedocs.io/en/stable/security.html
- Run your InfraQL commands!
- Stop your running container when finished:
docker stop $(docker ps -l -q --filter status=running --filter ancestor=infraql-jupyter-demo)