forked from cartesi/rollups-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-testnet.yml
165 lines (154 loc) · 4.59 KB
/
docker-compose-testnet.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
version: "3.9"
x-credentials:
&postgres-config
POSTGRES_HOSTNAME: database
POSTGRES_PORT: "5432"
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
services:
dispatcher:
image: cartesi/rollups-dispatcher:0.9.1
restart: always
depends_on:
state_server:
condition: service_healthy
redis:
condition: service_healthy
environment:
RUST_LOG: info
RD_DAPP_DEPLOYMENT_FILE: /deployments/${NETWORK:?undefined NETWORK}/${DAPP_NAME:?undefined DAPP_NAME}.json
RD_ROLLUPS_DEPLOYMENT_FILE: /opt/cartesi/share/deployments/${NETWORK:?undefined NETWORK}.json
RD_EPOCH_DURATION: 86400
SC_GRPC_ENDPOINT: http://state_server:50051
SC_DEFAULT_CONFIRMATIONS: ${BLOCK_CONFIRMATIONS:?undefined BLOCK_CONFIRMATIONS}
TX_PROVIDER_HTTP_ENDPOINT: ${RPC_URL:?undefined RPC_URL}
TX_MNEMONIC: ${MNEMONIC:?undefined MNEMONIC}
TX_CHAIN_ID: ${CHAIN_ID:?undefined CHAIN_ID}
TX_CHAIN_IS_LEGACY: ${TX_LEGACY:-false}
TX_DEFAULT_CONFIRMATIONS: ${BLOCK_CONFIRMATIONS_TX:?undefined BLOCK_CONFIRMATIONS_TX}
REDIS_ENDPOINT: redis://redis:6379
volumes:
- ./deployments:/deployments:ro
state_server:
image: cartesi/rollups-state-server:0.9.1
restart: always
healthcheck:
test: [ "CMD-SHELL", "bash -c 'echo \"\" > /dev/tcp/127.0.0.1/50051;'" ]
interval: 10s
timeout: 5s
retries: 5
environment:
RUST_LOG: info
SF_GENESIS_BLOCK: 0x1
SF_SAFETY_MARGIN: 20
BH_HTTP_ENDPOINT: ${RPC_URL:?undefined RPC_URL}
BH_WS_ENDPOINT: ${WSS_URL:?undefined WSS_URL}
BH_BLOCK_TIMEOUT: 120
advance_runner:
image: cartesi/rollups-advance-runner:0.9.1
restart: always
healthcheck:
test: [ "CMD", "curl", "--fail", "localhost:8080/healthz" ]
interval: 10s
timeout: 5s
retries: 5
depends_on:
redis:
condition: service_healthy
server_manager:
condition: service_healthy
volumes:
- ./deployments:/deployments:ro
- machine:/var/opt/cartesi/machine-snapshots
environment:
RUST_LOG: info
SERVER_MANAGER_ENDPOINT: http://server_manager:5001
SESSION_ID: default_rollups_id
REDIS_ENDPOINT: redis://redis:6379
CHAIN_ID: ${CHAIN_ID:?undefined CHAIN_ID}
DAPP_CONTRACT_ADDRESS_FILE: /deployments/${NETWORK:?undefined NETWORK}/${DAPP_NAME:?undefined DAPP_NAME}.json
SNAPSHOT_DIR: /var/opt/cartesi/machine-snapshots
SNAPSHOT_LATEST: /var/opt/cartesi/machine-snapshots/latest
server_manager:
restart: always
healthcheck:
test: [ "CMD-SHELL", "bash -c 'echo \"\" > /dev/tcp/127.0.0.1/5001;'" ]
interval: 10s
timeout: 5s
retries: 5
volumes:
- machine:/var/opt/cartesi/machine-snapshots
environment:
- SERVER_MANAGER_LOG_LEVEL=warning
- REMOTE_CARTESI_MACHINE_LOG_LEVEL=info
inspect_server:
image: cartesi/rollups-inspect-server:0.9.1
restart: always
ports:
- "5005:5005"
depends_on:
server_manager:
condition: service_healthy
environment:
RUST_LOG: info
INSPECT_SERVER_ADDRESS: 0.0.0.0:5005
SERVER_MANAGER_ADDRESS: server_manager:5001
SESSION_ID: default_rollups_id
indexer:
image: cartesi/rollups-indexer:0.9.1
restart: always
depends_on:
database:
condition: service_healthy
redis:
condition: service_healthy
environment:
<<: *postgres-config
RUST_LOG: info
REDIS_ENDPOINT: redis://redis:6379
CHAIN_ID: ${CHAIN_ID:?undefined CHAIN_ID}
DAPP_CONTRACT_ADDRESS_FILE: /deployments/${NETWORK:?undefined NETWORK}/${DAPP_NAME:?undefined DAPP_NAME}.json
volumes:
- ./deployments:/deployments:ro
graphql_server:
image: cartesi/rollups-graphql-server:0.9.1
ports:
- "4000:4000"
depends_on:
database:
condition: service_healthy
environment:
RUST_LOG: info
GRAPHQL_HOST: "0.0.0.0"
GRAPHQL_PORT: "4000"
<<: *postgres-config
database:
image: postgres:13-alpine
ports:
- 5432:5432
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres || exit 1" ]
interval: 10s
timeout: 5s
retries: 5
environment:
- POSTGRES_PASSWORD=password
volumes:
- database-data:/var/lib/postgresql/data
redis:
image: redis:6-alpine
ports:
- 6379:6379
restart: always
healthcheck:
test: [ "CMD", "redis-cli", "ping" ]
interval: 10s
timeout: 5s
retries: 5
volumes:
- redis-data:/data
volumes:
machine: {}
database-data: {}
redis-data: {}