Initial commit
This commit is contained in:
49
templates/compose/cryptonodes.yaml.erb
Normal file
49
templates/compose/cryptonodes.yaml.erb
Normal file
@@ -0,0 +1,49 @@
|
||||
version: '3.6'
|
||||
|
||||
x-logging-noisy: &fibitex-logging-noisy
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
parity:
|
||||
logging: *fibitex-logging-noisy
|
||||
image: parity/parity:v2.7.2-stable
|
||||
restart: always
|
||||
command: |
|
||||
--chain=kovan
|
||||
--mode=active
|
||||
--interface=all
|
||||
--warp=true
|
||||
--snapshot-peers=10
|
||||
--min-peers=5
|
||||
--max-peers=10
|
||||
--jsonrpc-interface=0.0.0.0
|
||||
--jsonrpc-cors=all
|
||||
--jsonrpc-hosts=all
|
||||
--jsonrpc-apis=all
|
||||
--db-compaction=ssd
|
||||
--no-persistent-txqueue
|
||||
volumes:
|
||||
- ../data/parity:/home/parity/.local/share/io.parity.ethereum
|
||||
ports:
|
||||
- "127.0.0.1:8545:8545"
|
||||
|
||||
bitcoind:
|
||||
logging: *fibitex-logging-noisy
|
||||
image: quay.io/openware/bitcoind:0.19.1
|
||||
restart: always
|
||||
user: root
|
||||
command: bitcoind
|
||||
volumes:
|
||||
- ../data/bitcoin:/bitcoin
|
||||
- ../config/bitcoin.conf:/bitcoin/.bitcoin/bitcoin.conf
|
||||
|
||||
litecoind:
|
||||
logging: *fibitex-logging-noisy
|
||||
image: quay.io/openware/litecoind:0.16.3
|
||||
restart: always
|
||||
volumes:
|
||||
- ../data/litecoin:/litecoin
|
||||
- ../config/litecoin.conf:/litecoin/litecoin.conf
|
||||
Reference in New Issue
Block a user