zhongl / graph-notebook-docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Graph Notebook Docker Image

Dockerfile based on https://github.com/aws/graph-notebook

Docker image is available in https://hub.docker.com/repository/docker/barrman/graph-notebook

docker pull barrman/graph-notebook:latest

Using docker-compose

Initially, graph-notebook docker image comes with GraphVisualization.ipynb starter notebook that comes with a working example of connecting to gremlin and executing a simple gremlin command.

In order to add custom notebooks, you may use the volumes and override/add to /root/notebook/destination/dir/.

version: '3.4'

services:
  gremlin:
      image: barrman/gremlin-server
      ports:
        - '8182:8182'
  
  graph-notebook:
    image: barrman/graph-notebook:latest
    ports:
      - "8888:8888"
    depends_on:
      - gremlin

About


Languages

Language:Jupyter Notebook 54.8%Language:Dockerfile 45.2%