-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
51 lines (47 loc) · 1.12 KB
/
compose.yaml
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
services:
aerospike-cluster:
image: aerospike/aerospike-server-enterprise:latest
container_name: aerospike-cluster
command: --config-file /etc/aerospike/aerospike.conf
ports:
- 3000:3000
volumes:
- ${PWD}/config/aerospike:/etc/aerospike
healthcheck:
test: [ "CMD", "asinfo", "-p", "3000", "-v", "build" ]
interval: 30s
timeout: 20s
retries: 3
networks:
- rag-demo
aerospike-vector:
image: aerospike/aerospike-proximus:0.4.0
container_name: aerospike-vector
volumes:
- ${PWD}/config/vector:/etc/aerospike-proximus
depends_on:
aerospike-cluster:
condition: service_healthy
networks:
- rag-demo
aerospike-client:
build:
context: .
dockerfile: docker_server.Dockerfile
container_name: aerospike-client
env_file: config/config.env
ports:
- 8080:8080
networks:
- rag-demo
aerospike-website:
build:
context: .
dockerfile: docker_website.Dockerfile
container_name: aerospike-website
ports:
- 4173:4173
networks:
- rag-demo
networks:
rag-demo: {}