mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
15 lines
217 B
YAML
15 lines
217 B
YAML
neo4j:
|
|
image: neo4j
|
|
ports:
|
|
- "7474:7474"
|
|
- "7687:7687"
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- NEO4J_CACHE_MEMORY=4G
|
|
ulimits:
|
|
nofile:
|
|
soft: 65535
|
|
hard: 65535
|
|
restart: always
|