Support Neo4j DB (beta)
This commit is contained in:
parent
588819ab6d
commit
5c9eb97db5
@ -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
9
neo4j/Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM neo4j:3.0
|
||||
|
||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
||||
|
||||
VOLUME /var/lib/neo4j
|
||||
|
||||
EXPOSE 7474 7687
|
||||
|
||||
CMD ["neo4j"]
|
Loading…
Reference in New Issue
Block a user