summaryrefslogtreecommitdiff
path: root/docker/docker-build.sh
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-04-22 02:25:35 +0300
committerAlon Levy <alon@pobox.com>2015-04-22 02:25:35 +0300
commit7174f651a23659b619769c75318b15e25c3b1422 (patch)
treea3de133a133ae16faacc8895ae49e51487910ed2 /docker/docker-build.sh
parent4cdabb5b51065f5130599c513b6ec77368ed89d1 (diff)
docker: initial commit
Diffstat (limited to 'docker/docker-build.sh')
-rwxr-xr-xdocker/docker-build.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/docker/docker-build.sh b/docker/docker-build.sh
new file mode 100755
index 00000000..c6fbd7d6
--- /dev/null
+++ b/docker/docker-build.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+if [ ! -e .git ]; then
+ echo run from top level checkout of rhizi repository
+ exit 0
+fi
+if [ ! -e docker/fedora/neo4j-community-2.2.1-unix.tar.gz ]; then
+ echo downloading neo4j community edition 2.2.1
+ wget http://neo4j.com/artifact.php?name=neo4j-community-2.2.1-unix.tar.gz -Odocker/fedora/neo4j-community-2.2.1-unix.tar.gz
+fi
+docker build -t alon/rhizi:test1 docker/fedora