Commit 5c9eb97d authored by Mahmoud Zalt's avatar Mahmoud Zalt

Support Neo4j DB (beta)

parent 588819ab
......@@ -32,6 +32,7 @@ services:
- /var/lib/mariadb
- /var/lib/redis
- /var/lib/memcached
- /var/lib/neo4j
### Nginx Server Container ##################################
......@@ -94,6 +95,18 @@ services:
links:
- php-fpm
### Neo4j Container #########################################
neo4j:
build: ./neo4j
ports:
- "7474:7474"
- "7687:7687"
volumes_from:
- data
links:
- php-fpm
### Redis Container #########################################
redis:
......
FROM neo4j:3.0
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
VOLUME /var/lib/neo4j
EXPOSE 7474 7687
CMD ["neo4j"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment