generated from dappnode/DAppNodePackage-web3signer-prater
-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
68 lines (68 loc) · 1.63 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
version: "3.8"
services:
brain:
image: "brain.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
build:
context: brain
environment:
- LOG_LEVEL=debug
restart: unless-stopped
volumes:
- "brain_data:/app/data"
web3signer:
image: "web3signer.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
healthcheck:
test: >-
curl -H 'Host: web3signer.web3signer-gnosis.dappnode'
http://localhost:9000/healthcheck
interval: 5s
timeout: 5s
retries: 100
depends_on:
flyway:
condition: service_completed_successfully
security_opt:
- "seccomp:unconfined"
build:
context: web3signer
dockerfile: Dockerfile
args:
UPSTREAM_VERSION: 24.2.0
environment:
JAVA_OPTS: "-Xmx6g"
EXTRA_OPTS: ""
WEB3SIGNER_VERTX_WORKER_POOL_SIZE: "20"
volumes:
- "web3signer_data:/data"
restart: unless-stopped
flyway:
build:
context: flyway
dockerfile: Dockerfile
args:
UPSTREAM_VERSION: 24.2.0
depends_on:
postgres:
condition: service_started
image: "flyway.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
restart: on-failure
postgres:
image: "postgres.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
healthcheck:
test: pg_isready -U postgres
interval: 5s
timeout: 5s
retries: 5
build:
context: postgres
dockerfile: Dockerfile
args:
UPSTREAM_VERSION: 24.2.0
user: postgres
volumes:
- "postgres_data:/var/lib/postgresql/data"
restart: unless-stopped
volumes:
brain_data: {}
web3signer_data: {}
postgres_data: {}