-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (62 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
62 lines (62 loc) · 1.38 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: "3.8"
services:
brain:
build:
context: services/brain
args:
BRAIN_VERSION: 0.1.32
environment:
- LOG_LEVEL=debug
restart: unless-stopped
volumes:
- brain_data:/app/data
web3signer:
depends_on:
flyway:
condition: service_completed_successfully
security_opt:
- seccomp:unconfined
build:
context: services/web3signer
args:
WEB3SIGNER_VERSION: 26.4.2
STAKER_SCRIPTS_VERSION: v0.1.2
POSTGRES_USER: postgres
environment:
JAVA_OPTS: "-Xmx6g"
EXTRA_OPTS: ""
WEB3SIGNER_VERTX_WORKER_POOL_SIZE: "20"
volumes:
- web3signer_data:/data
restart: unless-stopped
flyway:
build:
context: services/flyway
args:
WEB3SIGNER_VERSION: 26.4.2
POSTGRES_USER: postgres
depends_on:
postgres:
condition: service_started
restart: on-failure
postgres:
build:
context: services/postgres
args:
WEB3SIGNER_VERSION: 26.4.2
DATA_DIR: /var/lib/postgresql/data
POSTGRES_USER: postgres
user: postgres
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
tracker:
build:
context: services/tracker
args:
TRACKER_VERSION: 0.1.5
restart: unless-stopped
volumes:
brain_data: {}
web3signer_data: {}
postgres_data: {}