11version : ' 3.6'
22
33services :
4+ mainnet-monerod :
5+ image : reg.openware.work/cryptonode/monerod:0.15.0.1
6+ restart : always
7+ command : ./monerod --non-interactive --config-file=/home/monero/.bitmonero/mainnet/bitmonero.conf
8+ user : root
9+ ports :
10+ - " 18081:18081"
11+ volumes :
12+ - ./blocks/mainnet:/home/monero/.bitmonero/lmdb
13+ - ./config/mainnet/bitmonero.conf:/home/monero/.bitmonero/mainnet/bitmonero.conf
14+
15+ mainnet-wallet-deposit :
16+ image : reg.openware.work/cryptonode/monerod:0.15.0.1
17+ restart : always
18+ command : ./monero-wallet-rpc --non-interactive --config-file=/home/monero/.bitmonero/mainnet/monero-deposit-wallet-rpc.conf
19+ user : root
20+ ports :
21+ - " 18082:18082"
22+ volumes :
23+ - ./keys/mainnet/deposit:/home/monero/wallets
24+ - ./config/mainnet/monero-deposit-wallet-rpc.conf:/home/monero/.bitmonero/mainnet/monero-deposit-wallet-rpc.conf
25+ mainnet-wallet-hot :
26+ image : reg.openware.work/cryptonode/monerod:0.15.0.1
27+ restart : always
28+ command : ./monero-wallet-rpc --non-interactive --config-file=/home/monero/.bitmonero/mainnet/monero-hot-wallet-rpc.conf
29+ user : root
30+ ports :
31+ - " 18083:18083"
32+ volumes :
33+ - ./keys/mainnet/hot:/home/monero/wallets
34+ - ./config/mainnet/monero-hot-wallet-rpc.conf:/home/monero/.bitmonero/mainnet/monero-hot-wallet-rpc.conf
35+
436 stagenet-monerod :
537 image : reg.openware.work/cryptonode/monerod:0.15.0.1
638 restart : always
@@ -12,13 +44,24 @@ services:
1244 - ./blocks/stagenet:/home/monero/.bitmonero/stagenet/lmdb
1345 - ./config/stagenet/bitmonero.conf:/home/monero/.bitmonero/stagenet/bitmonero.conf
1446
15- stagenet-wallet :
47+ stagenet-wallet-deposit :
1648 image : reg.openware.work/cryptonode/monerod:0.15.0.1
1749 restart : always
18- command : ./monero-wallet-rpc --stagenet --non-interactive --config-file=/home/monero/.bitmonero/stagenet/monero-wallet-rpc.conf
50+ command : ./monero-wallet-rpc --stagenet --non-interactive --config-file=/home/monero/.bitmonero/stagenet/monero-deposit- wallet-rpc.conf
1951 user : root
2052 ports :
2153 - " 38082:38082"
2254 volumes :
23- - ./keys/stagenet:/home/monero/wallets
24- - ./config/stagenet/monero-wallet-rpc.conf:/home/monero/.bitmonero/stagenet/monero-wallet-rpc.conf
55+ - ./keys/stagenet/deposit:/home/monero/wallets
56+ - ./config/stagenet/monero-deposit-wallet-rpc.conf:/home/monero/.bitmonero/stagenet/monero-deposit-wallet-rpc.conf
57+
58+ stagenet-wallet-hot :
59+ image : reg.openware.work/cryptonode/monerod:0.15.0.1
60+ restart : always
61+ command : ./monero-wallet-rpc --stagenet --non-interactive --config-file=/home/monero/.bitmonero/stagenet/monero-hot-wallet-rpc.confg
62+ user : root
63+ ports :
64+ - " 38083:38083"
65+ volumes :
66+ - ./keys/stagenet/hot:/home/monero/wallets
67+ - ./config/stagenet/monero-hot-wallet-rpc.conf:/home/monero/.bitmonero/stagenet/monero-hot-wallet-rpc.conf
0 commit comments