-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
73 lines (65 loc) · 1.33 KB
/
docker-compose.yml
File metadata and controls
73 lines (65 loc) · 1.33 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
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
version: "3"
services:
bitcoin:
image: ruimarinho/bitcoin-core:0.16
ports:
- 8332:8332
- 8333:8333
command:
-whitelist=0.0.0.0/0
-txindex=0
-listen=1
-server=1
-irc=1
-upnp=1
-port=8332
-rpcport=8333
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcuser=bitcorenodetest
-rpcpassword=local321
bitcoin_testnet:
image: ruimarinho/bitcoin-core:0.16
ports:
- 18332:18332
- 18333:18333
command:
-whitelist=0.0.0.0/0
-txindex=0
-listen=1
-server=1
-testnet=1
-irc=1
-upnp=1
-port=18332
-rpcport=18333
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcuser=bitcorenodetest
-rpcpassword=local321
parity:
image: parity/parity:v2.7.2-stable
ports:
- 8545:8545
- 8546:8546
command:
--jsonrpc-interface=0.0.0.0
--ws-interface=0.0.0.0
--ws-port=8546
--jsonrpc-apis=all
--ws-apis=all
parity_test:
image: parity/parity:v2.7.2-stable
ports:
- 8547:8547
- 8548:8548
command:
--chain=kovan
--jsonrpc-port=8547
--jsonrpc-interface=0.0.0.0
--ws-interface=0.0.0.0
--ws-port=8548
--jsonrpc-apis=all
--ws-apis=all
rippled:
image: infrakube_rippled:latest