-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (44 loc) · 1.03 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
46
47
48
49
50
services:
polyglotdb:
image: xiaoyi23/polyglotdb:v1.3
container_name: polyglotdb
volumes:
- shared_data:/temp
- .:/polyglotdb
depends_on:
neo4j:
condition: service_healthy
influxdb:
condition: service_started
network_mode: host
platform: "linux/amd64"
neo4j:
image: neo4j:5.22.0
container_name: neo4j
ports:
- "7474:7474"
- "7687:7687"
volumes:
- ./pgdb/neo4j/conf:/conf
- ./pgdb/neo4j/data:/data
- ./pgdb/neo4j/logs:/logs
- shared_data:/temp
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider localhost:7474 || exit 1"]
interval: 5s
timeout: 5s
retries: 5
influxdb:
image: influxdb:1.8
container_name: influxdb
ports:
- "8086:8086"
volumes:
- ./pgdb/influxdb:/var/lib/influxdb
- ./pgdb/influxdb/conf/influxdb.conf:/etc/influxdb/influxdb.conf
- shared_data:/temp
networks:
app_network:
driver: bridge
volumes:
shared_data: