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.
22 lines
433 B
22 lines
433 B
version: '3.8' |
|
|
|
services: |
|
neo4j: |
|
image: neo4j:5.15 |
|
container_name: neo4j-test |
|
ports: |
|
- "7474:7474" # HTTP |
|
- "7687:7687" # Bolt |
|
environment: |
|
- NEO4J_AUTH=neo4j/testpass123 |
|
- NEO4J_PLUGINS=["apoc"] |
|
volumes: |
|
- neo4j_data:/data |
|
healthcheck: |
|
test: ["CMD", "curl", "-f", "http://localhost:7474"] |
|
interval: 10s |
|
timeout: 5s |
|
retries: 5 |
|
|
|
volumes: |
|
neo4j_data:
|
|
|