Skip to content

Commit

Permalink
Fix environment variable assignments in docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
madmikeross committed Dec 21, 2023
1 parent 12f6efb commit 7f224d2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ services:
- "7687:7687"
volumes:
- neo4j_data:/data
- /var/lib/neo4j/plugins:/plugins
- neo4j_data:/plugins
environment:
- NEO4J_AUTH:neo4j/neo4jneo4j
- NEO4J_PLUGINS:'["graph-data-science"]'
- NEO4J_AUTH=neo4j/neo4jneo4j
- NEO4J_PLUGINS=["graph-data-science"]
- NEO4J_dbms_security_procedures_unrestricted=gds.*
volumes:
neo4j_data:

0 comments on commit 7f224d2

Please sign in to comment.