You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

7 years ago
version: "3"
services:
btcpayserver:
7 years ago
image: nicolasdorier/btcpayserver:1.0.0.49
7 years ago
ports:
- 8080:49392
expose:
- "49392"
environment:
BTCPAY_POSTGRES: "User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver"
BTCPAY_NETWORK: regtest
BTCPAY_EXPLORERURL: http://nbxplorer:32838/
BTCPAY_BIND: 0.0.0.0:49392
7 years ago
BTCPAY_INTERNALURL: http://btcpayserver:49392/
7 years ago
links:
- nbxplorer
- postgres
nbxplorer:
7 years ago
image: nicolasdorier/nbxplorer:1.0.0.32
7 years ago
expose:
- "32838"
environment:
NBXPLORER_NETWORK: regtest
NBXPLORER_RPCURL: http://bitcoind:43782/
NBXPLORER_RPCUSER: ceiwHEbqWI83
NBXPLORER_RPCPASSWORD: DwubwWsoo3
NBXPLORER_NODEENDPOINT: bitcoind:8332
NBXPLORER_BIND: 0.0.0.0:32838
NBXPLORER_NOAUTH: 1
links:
- bitcoind
bitcoind:
container_name: btcpayserver_regtest_bitcoind
image: nicolasdorier/docker-bitcoin:0.15.0.1
7 years ago
environment:
BITCOIN_EXTRA_ARGS: "rpcuser=ceiwHEbqWI83\nrpcpassword=DwubwWsoo3\nregtest=1\nrpcport=43782\nport=8332"
7 years ago
expose:
- "43782"
- "8332"
postgres:
image: postgres:9.6.5