-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
69 lines (63 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: otomad-database-api
version: "3.9"
services:
postgres:
image: postgres:15@sha256:ea40a028dd42740d6cff34135ff6b3119ff7ce0ed60120d992216456b5987fe7
healthcheck:
test: pg_isready
interval: 10s
timeout: 5s
retries: 5
ports:
- target: 5432
published: 5432
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: test
volumes:
- type: volume
source: postgres_data
target: /var/lib/postgresql/data
adminer:
image: adminer@sha256:b75eae89431e8469613b844e76382a26efc8601c17f446bcd81665bc87ca9a1f
ports:
- target: 8080
published: 8081
neo4j:
image: neo4j:5.15@sha256:d9e2fb1ba398536e50d22ebc3d5d585baa086c1c0cf8e5b96bdc9e11e87e002a
ports:
# http
- target: 7474
published: 7474
# bolt
- target: 7687
published: 7687
volumes:
- type: volume
source: neo4j_data
target: /data
- type: volume
source: neo4j_logs
target: /logs
environment:
NEO4J_AUTH: neo4j/password
meilisearch:
image: getmeili/meilisearch:v1.0@sha256:dd8162da4cebbdec1ab6176754cff941b04427e7f8df532896a920ec3d292d8a
ports:
- target: 7700
published: 7700
volumes:
- type: volume
source: meilisearch_data
target: /meili_data
redis:
image: redis:7.2@sha256:66b2c641a6e16eeb188b64816f915a6313f15850d5dbea7c29736f59f9e5146c
ports:
- target: 6379
published: 6379
volumes:
postgres_data:
neo4j_data:
neo4j_logs:
meilisearch_data: