Browse Source

Merge branch 'master' of github.com:janoside/btc-rpc-explorer

fix-133-memory-crash
Dan Janosik 5 years ago
parent
commit
f1fa665bf3
No known key found for this signature in database GPG Key ID: C6F8CE9FFDB2CED2
  1. 6
      Dockerfile
  2. 1
      README.md
  3. 1
      app/config.js

6
Dockerfile

@ -1,6 +1,10 @@
FROM node:8
FROM node:8 as builder
WORKDIR /workspace
COPY . .
RUN npm install
FROM node:8-alpine
WORKDIR /workspace
COPY --from=builder /workspace .
CMD npm start
EXPOSE 3002

1
README.md

@ -21,7 +21,6 @@ Live demo available at: [https://btc-explorer.com](https://btc-explorer.com)
* Optional transaction history for addresses by querying from ElectrumX, blockchain.com, blockchair.com, or blockcypher.com
* Mempool summary, with fee, size, and age breakdowns
* RPC command browser and terminal
* Currently supports BTC, LTC (support for any Bitcoin-RPC-protocol-compliant coin can be added easily)
# Getting started

1
app/config.js

@ -66,6 +66,7 @@ module.exports = {
"bumpfee",
"clearbanned",
"createmultisig",
"createwallet",
"disconnectnode",
"dumpprivkey",
"dumpwallet",

Loading…
Cancel
Save