forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.test.base.yml
71 lines (64 loc) · 1.38 KB
/
docker-compose.test.base.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
version: "3"
services:
db:
image: mongo:3.6.23
bitcoin:
image: ruimarinho/bitcoin-core:24
command:
-printtoconsole
-regtest=1
-txindex=0
-listen=1
-server=1
-dnsseed=0
-upnp=0
-port=8332
-rpcport=8333
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcuser=bitcorenodetest
-rpcpassword=local321
-fallbackfee=0.00001
erigon:
image: thorax/erigon:v2022.10.01
command:
/usr/local/bin/erigon
--chain=dev
--datadir=/home/erigon/data
--private.api.addr=0.0.0.0:9090
--http.addr=0.0.0.0
--http.api=eth,erigon,web3,net,debug,trace,txpool
--http.port=8545
--mine
--ws
geth:
image: 0labs/geth:v1.11.5
volumes:
- ./.docker/geth-keystore:/keystore
command:
geth
--dev
--datadir=/home/kjoseph/nodes/dev/geth
--keystore=/keystore
--http
--http.api=web3,eth,debug,personal,net
--http.corsdomain='*'
--http.vhosts='*'
--http.addr=0.0.0.0
--http.port=8545
--ws
--ws.origins='*'
--ws.api=web3,eth,debug,personal,net
--ws.addr=0.0.0.0
--ws.port=8546
rippled:
build:
context: .
dockerfile: ./.docker/rippled.Dockerfile
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.28.0.0/16