Skip to content

zhongl/graph-notebook-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 54.8%
  • Dockerfile 45.2%