-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (43 loc) · 1.24 KB
/
docker-compose.yml
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
42
43
44
45
version: '1'
services:
InSoLiToDatabase2:
image: neo4j:4.4.3
hostname: neodb
environment:
- NEO4J_AUTH=none
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
volumes:
- type: bind
source: ./DB/InSoLiToImport
target: /var/lib/neo4j/import
- ./DB/LOGS:/logs
- ./DB/DATA:/data
- ./DB/PLUGINS/neo4j-graph-data-science-1.8.3.jar:/var/lib/neo4j/plugins/graph-data-science.jar
- ./DB/PLUGINS/apoc-4.4.0.3-all.jar:/var/lib/neo4j/plugins/apoc.jar
- ./DB/CONF:/var/lib/neo4j/conf
ports:
- 7687:7687
- 7474:7474
ApacheServer2:
image: httpd:2.4.52
depends_on:
- InSoLiToDatabase2
volumes:
- type: bind
source: ./REST/static
target: /usr/local/apache2/htdocs/
read_only: true
- type: bind
source: apache-setup/insolito-httpd.conf
target: /usr/local/apache2/conf/httpd.conf
read_only: true
- type: bind
source: apache-setup/neo4j-reverse-proxy.conf
target: /usr/local/apache2/conf/extra/neo4j-reverse-proxy.conf
read_only: true
ports:
- 8080:80
volumes:
InSoLiToWB: