Skip to content

Commit

Permalink
docker-compose: adds neo4j server
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément Sicard committed Jun 25, 2023
1 parent 1768ce2 commit 005c0e7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,15 @@ services:
- "80:80"
volumes:
- .:/unml-api
depends_on:
- neo4j

neo4j:
image: neo4j:latest
ports:
- "7474:7474"
- "7687:7687"
volumes:
- ./data:/data
environment:
- NEO4J_AUTH=none

0 comments on commit 005c0e7

Please sign in to comment.