Support Neo4j DB (beta)

This commit is contained in:
Mahmoud Zalt 2016-05-20 20:35:10 +03:00
parent 588819ab6d
commit 5c9eb97db5
2 changed files with 22 additions and 0 deletions

View File

@ -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:

9
neo4j/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM neo4j:3.0
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
VOLUME /var/lib/neo4j
EXPOSE 7474 7687
CMD ["neo4j"]