forked from GOATNetwork/goat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestnet3.yaml
More file actions
47 lines (44 loc) · 1.05 KB
/
Copy pathtestnet3.yaml
File metadata and controls
47 lines (44 loc) · 1.05 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
name: testnet3
# Note: The testnet3 will be deprecated in the future
services:
geth:
image: ghcr.io/goatnetwork/goat-geth:v0.1.9
restart: unless-stopped
stop_grace_period: 30s
network_mode: host
command:
- --goat=testnet3
- --http
- --http.api=eth,net,web3
- --http.addr=0.0.0.0
- --http.vhosts=*
- --http.corsdomain=*
- --ws
- --ws.origins=*
- --ws.addr=0.0.0.0
- --ws.api=eth,net,web3
# Open it if you need an archive node
# - --gcmode=archive
volumes:
- /data/geth:/root/.ethereum
logging:
driver: local
goat:
image: ghcr.io/goatnetwork/goat:v0.3.3
restart: unless-stopped
stop_grace_period: 30s
network_mode: host
command:
- start
- --goat.geth=/geth/geth.ipc
- --chain-id=goat-testnet3
- --grpc.address=0.0.0.0:9090
- --api.enable
- --api.address=tcp://0.0.0.0:1317
depends_on:
- geth
volumes:
- /data/goat:/root/.goat
- /data/geth:/geth
logging:
driver: local