The aim of this repository is to containerize morpheus, the project from opencypher previously known as Cypher for Apache Spark.
docker run -d -p 8888:8888 -p 4040:4040 emanuelefalzone/morpheus
The morpheus image opens SparkUI (Spark Monitoring and Instrumentation UI) at default port 4040, this option map 4040 port inside docker container to 4040 port on host machine . Note every new spark context that is created is put onto an incrementing port (ie. 4040, 4041, 4042, etc.), and it might be necessary to open multiple ports. For example: docker run -d -p 8888:8888 -p 4040:4040 -p 4041:4041 emanuelefalzone/morpheus