Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
conker84 committed Jul 10, 2018
1 parent d004d1f commit aa408a2
Show file tree
Hide file tree
Showing 6 changed files with 2,325 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM apache/zeppelin:0.8.0

# Workaround to "fix" https://issues.apache.org/jira/browse/ZEPPELIN-3586

RUN echo "$LOG_TAG Download Spark binary" && \
wget -O /tmp/spark-2.3.1-bin-hadoop2.7.tgz http://apache.panu.it/spark/spark-2.3.1/spark-2.3.1-bin-hadoop2.7.tgz && \
tar -zxvf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \
rm -rf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \
mv spark-2.3.1-bin-hadoop2.7 /spark-2.3.1-bin-hadoop2.7

ENV SPARK_HOME=/spark-2.3.1-bin-hadoop2.7

CMD ["bin/zeppelin.sh"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# zeppelin-neo4j
This repository contains the code relative to the article "Building a Graph Data Pipeline With Zeppelin Spark and Neo4j"
25 changes: 25 additions & 0 deletions neo4j-zeppelin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3'

services:
neo4j:
image: neo4j
networks:
- host
ports:
- 7474:7474
- 7687:7687
environment:
- NEO4J_AUTH=neo4j/zeppelin
zeppelin:
build:
context: .
image: santand84/zeppelin:0.8.0
networks:
- host
ports:
- 8080:8080
volumes:
- C:/Users/a.santurbano/Desktop/zep-neo/zeppelin/notebook:/zeppelin/notebook
- C:/Users/a.santurbano/Desktop/zep-neo/zeppelin/conf:/zeppelin/conf
networks:
host:
9 changes: 9 additions & 0 deletions zeppelin/conf/helium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"enabled": {
"volume-leaflet": "[email protected]"
},
"packageConfig": {},
"bundleDisplayOrder": [
"volume-leaflet"
]
}
Loading

0 comments on commit aa408a2

Please sign in to comment.