1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

add neo4j

This commit is contained in:
kev 2016-04-23 00:00:45 +08:00
parent b25e75948a
commit b80b5ba0bc
2 changed files with 14 additions and 0 deletions

@ -122,6 +122,7 @@ dockerfiles
- [ ] jenkins
- [x] letsencrypt
- [x] mongo
- [x] neo4j
- [x] owncloud
- [x] rocket.chat
- [x] scrapinghub/splash

13
neo4j/docker-compose.yml Normal file

@ -0,0 +1,13 @@
neo4j:
image: neo4j
ports:
- "7474:7474"
volumes:
- ./data:/data
environment:
- NEO4J_CACHE_MEMORY=4G
ulimits:
nofile:
soft: 65535
hard: 65535
restart: always