mirror of
https://github.com/aljazceru/btcpayserver-docker.git
synced 2026-01-25 18:55:05 +01:00
20 lines
437 B
Markdown
20 lines
437 B
Markdown
# About this docker-compose
|
|
|
|
This docker-compose shows how to configure postgres, bitcoind, NBXplorer and BTCPay on regtest.
|
|
|
|
It exposes BTCPay on the host address http://localhost:8080/.
|
|
|
|
It also exposes Bitcoin Core RPC which you can access through port 8081:
|
|
|
|
To access it, you can use:
|
|
On Powershell:
|
|
|
|
```
|
|
bitcoin-cli -conf="$pwd/bitcoin.conf" getblockcount
|
|
```
|
|
|
|
On Linux:
|
|
|
|
```
|
|
bitcoin-cli -conf="$pwd/bitcoin.conf" getblockcount
|
|
``` |