You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
616 B
27 lines
616 B
version: '3.8' |
|
|
|
services: |
|
neo4j: |
|
image: neo4j:5-community |
|
container_name: orly-neo4j |
|
ports: |
|
- "7474:7474" # HTTP |
|
- "7687:7687" # Bolt |
|
environment: |
|
- NEO4J_AUTH=neo4j/password |
|
- NEO4J_PLUGINS=["apoc"] |
|
- NEO4J_dbms_memory_heap_initial__size=512m |
|
- NEO4J_dbms_memory_heap_max__size=1G |
|
- NEO4J_dbms_memory_pagecache_size=512m |
|
volumes: |
|
- neo4j-data:/data |
|
- neo4j-logs:/logs |
|
healthcheck: |
|
test: ["CMD", "curl", "-f", "http://localhost:7474"] |
|
interval: 10s |
|
timeout: 5s |
|
retries: 5 |
|
|
|
volumes: |
|
neo4j-data: |
|
neo4j-logs:
|
|
|