btcpayserver/BTCPayServer/docker-compose.regtest.yml

49 lines
1.1 KiB
YAML
Raw Normal View History

2017-09-28 09:35:29 +02:00
version: "3"
services:
2017-09-28 11:49:24 +02:00
btcpayserver:
2017-09-28 09:35:29 +02:00
ports:
2017-09-28 11:49:24 +02:00
- 8080:49392
expose:
- "49392"
build:
context: .
dockerfile: DockerFile
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
links:
- nbxplorer
- postgres
nbxplorer:
image: nicolasdorier/nbxplorer:1.0.0.12
expose:
- "32838"
2017-09-28 09:35:29 +02:00
environment:
NBXPLORER_NETWORK: regtest
2017-09-28 11:49:24 +02:00
NBXPLORER_RPCURL: http://bitcoind:43782/
2017-09-28 09:35:29 +02:00
NBXPLORER_RPCUSER: ceiwHEbqWI83
NBXPLORER_RPCPASSWORD: DwubwWsoo3
NBXPLORER_NODEENDPOINT: bitcoind:8332
2017-09-28 11:49:24 +02:00
NBXPLORER_BIND: 0.0.0.0:32838
2017-09-28 09:35:29 +02:00
NBXPLORER_NOAUTH: 1
links:
- bitcoind
bitcoind:
image: nicolasdorier/bitcoin:0.15.0.1
environment:
2017-09-28 11:49:24 +02:00
BITCOIN_EXTRA_ARGS: "regtest=1\nrpcport=43782\nport=8332"
2017-09-28 09:35:29 +02:00
BITCOIN_RPC_USER: ceiwHEbqWI83
BITCOIN_RPC_PASSWORD: DwubwWsoo3
expose:
2017-09-28 11:49:24 +02:00
- "43782"
2017-09-28 09:35:29 +02:00
- "8332"
postgres:
image: postgres:9.6.5