-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (39 loc) · 916 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (39 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "3.8"
services:
graphdb:
image: neo4j:${GRAPHDB_IMAGE_TAG:-latest}
restart: unless-stopped
container_name: graphdb
ports:
- "7474:7474"
- "7687:7687"
volumes:
- graphdb-data:/data
- graphdb-plugins:/plugins
environment:
NEO4J_AUTH: none
NEO4J_apoc_export_file_enabled: true
NEO4J_apoc_import_file_enabled: true
NEO4J_apoc_import_file_use__neo4j__config: true
NEO4J_PLUGINS: '["apoc"]'
networks:
- graphdb-config-network
db:
image: pathwaycommons/rethinkdb-docker:${RETHINKDB_IMAGE_TAG:-latest}
restart: unless-stopped
container_name: db
ports:
- "8080:8080"
- "28015:28015"
- "29015:29015"
volumes:
- db-data:/data
networks:
- graphdb-config-network
volumes:
graphdb-data:
graphdb-plugins:
db-data:
networks:
graphdb-config-network:
driver: bridge