forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
70 lines (70 loc) · 1.54 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
69
70
services:
driver:
image: unifi-client
container_name: unifi-client-driver
build:
context: .
dockerfile: ./packages/taiko-client/Dockerfile
restart: unless-stopped
pull_policy: always
volumes:
- ./host:/host
command:
- driver
- --l1.ws
- "${L1_WS}"
- --l1.beacon
- "${L1_BEACON}"
- --l2.ws
- "${L2_WS}"
- --taikoL1
- "${TAIKO_L1}"
- --taikoL2
- "${TAIKO_L2}"
- --jwtSecret
- host/jwt.txt
- --l2.auth
- "${L2_AUTH}"
- --verbosity
- "4"
extra_hosts:
- "host.docker.internal:host-gateway"
prover:
image: unifi-client
container_name: unifi-client-prover
restart: unless-stopped
pull_policy: always
command:
- prover
- --l1.ws
- "${L1_WS}"
- --l2.ws
- "${L2_WS}"
- --l2.http
- "${L2_HTTP}"
- --taikoL1
- "${TAIKO_L1}"
- --taikoL2
- "${TAIKO_L2}"
- --taikoToken
- "${TAIKO_TOKEN}"
- --proverSet
- "${PROVER_SET}"
- --tx.gasLimit
- "${TX_GAS_LIMIT}"
- --l1.proverPrivKey
- "${L1_PROVER_PRIVKEY}"
- --prover.capacity
- "${PROVER_CAPACITY}"
- --raiko.host
- "${RAIKO_HOST}"
- --prover.l1NodeVersion
- "${L1_NODE_VERSION}"
- --prover.l2NodeVersion
- "${L2_NODE_VERSION}"
- --prover.blockConfirmations
- "${PROVER_BLOCK_CONFIRMATIONS}"
- --verbosity
- "4"
extra_hosts:
- "host.docker.internal:host-gateway"