Created
October 6, 2017 13:07
-
-
Save rubanraj54/09048ea68b623ffa9f15311c396a8c20 to your computer and use it in GitHub Desktop.
Neo4j Community edition docker compose file Raw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
neo4j-community-1: | |
image: neo4j:3.2.3 | |
ports: | |
- 9998:7474 | |
- 7778:7687 | |
volumes: | |
- ~/neo4j/data:/data | |
- ~/neo4j/logs:/logs | |
neo4j-community-2: | |
image: neo4j:3.2.3 | |
ports: | |
- 9999:7474 | |
- 7779:7687 | |
volumes: | |
- ~/neo4jone/data:/data | |
- ~/neo4jone/logs:/logs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment