-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (48 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
version: "3.8"
services:
db:
build:
context: db
restart: unless-stopped
volumes:
- db_data:/var/lib/postgresql/data
healthcheck:
test: pg_isready -U postgres
shutter:
build:
context: shutter
args:
UPSTREAM_VERSION: v1.4.0
KEYPER_CONFIG_DIR: /keyper/config
SHUTTER_CHAIN_DIR: /chain
STAKER_SCRIPTS_VERSION: v0.1.2
restart: unless-stopped
environment:
- SHUTTER_API_NODE_PRIVATEKEY=""
- SHUTTER_PUSH_METRICS_ENABLED=false
- KEYPER_NAME=""
- ETHEREUM_WS=
- SHUTTER_PUSH_LOGS_ENABLED=false
- PUSHGATEWAY_USERNAME=""
- PUSHGATEWAY_PASSWORD=""
- SHUTTER_HTTP_ENABLED=false
volumes:
- chain:/chain
- keyper-config:/keyper/config
metrics:
build:
context: metrics
restart: unless-stopped
environment:
SHUTTER_PUSH_METRICS_ENABLED: true
KEYPER_NAME: ""
PUSHGATEWAY_URL: https://keyperingest.metrics.shutter.network/api/v1/write
PUSHGATEWAY_USERNAME: ""
PUSHGATEWAY_PASSWORD: ""
volumes:
- metrics-config:/config
volumes:
db_data: {}
chain: {}
keyper-config: {}
metrics-config: {}