forked from AvaProtocol/EigenLayer-AVS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
45 lines (44 loc) · 964 Bytes
/
docker-compose.yaml
File metadata and controls
45 lines (44 loc) · 964 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
42
43
44
45
name: ava
services:
aggregator:
image: avaprotocol/avs
command: ["aggregator"]
build:
context: .
dockerfile: dockerfiles/aggregator.Dockerfile
ports:
- "2206:2206"
- "1323:1323"
networks:
- ava
#
# backend:
# image: example/database
# volumes:
# - db-data:/etc/data
# networks:
# - back-tier
volumes:
- ./config:/app/config
- db-data:/tmp/app-avs
healthcheck:
test: curl --fail http://localhost:1323/up || exit 1
interval: 3s
retries: 15
start_period: 3s
timeout: 3s
grpcui:
image: fullstorydev/grpcui
command: ["-plaintext", "aggregator:2206"]
ports:
- "8080:8080"
networks:
- ava
depends_on:
aggregator:
condition: service_healthy
volumes:
db-data:
networks:
# The presence of these objects is sufficient to define them
ava: {}