version: "3" # Run `docker-compose up dev` for bootstrapping your development environment # Doing so will expose eclair API, NBXplorer, Bitcoind RPC and postgres port to the host so that tests can Run, # The Visual Studio launch setting `Docker-Regtest` is configured to use this environment. services: tests: build: context: .. dockerfile: BTCPayServer.Tests/Dockerfile environment: TESTS_RPCCONNECTION: server=http://bitcoind:43782;ceiwHEbqWI83:DwubwWsoo3 TESTS_BTCNBXPLORERURL: http://bitcoin-nbxplorer:32838/ TESTS_LTCNBXPLORERURL: http://litecoin-nbxplorer:32839/ TESTS_POSTGRES: User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver TESTS_PORT: 80 TESTS_HOSTNAME: tests expose: - "80" links: - bitcoin-nbxplorer - litecoin-nbxplorer - postgres extra_hosts: - "tests:127.0.0.1" # The dev container is not actually used, it is just handy to run `docker-compose up dev` to start all services dev: image: nicolasdorier/docker-bitcoin:0.15.0.1 environment: BITCOIN_EXTRA_ARGS: | regtest=1 connect=bitcoind:39388 links: - bitcoin-nbxplorer - litecoin-nbxplorer - postgres bitcoin-nbxplorer: image: nicolasdorier/nbxplorer:1.0.0.39 ports: - "32838:32838" expose: - "32838" environment: NBXPLORER_NETWORK: regtest NBXPLORER_RPCURL: http://bitcoind:43782/ NBXPLORER_RPCUSER: ceiwHEbqWI83 NBXPLORER_RPCPASSWORD: DwubwWsoo3 NBXPLORER_NODEENDPOINT: bitcoind:39388 NBXPLORER_BIND: 0.0.0.0:32838 NBXPLORER_VERBOSE: 1 NBXPLORER_NOAUTH: 1 links: - bitcoind litecoin-nbxplorer: image: nicolasdorier/nbxplorer:1.0.0.39 ports: - "32839:32839" expose: - "32839" environment: NBXPLORER_NETWORK: ltc-regtest NBXPLORER_RPCURL: http://litecoind:43782/ NBXPLORER_RPCUSER: ceiwHEbqWI83 NBXPLORER_RPCPASSWORD: DwubwWsoo3 NBXPLORER_NODEENDPOINT: litecoind:39388 NBXPLORER_BIND: 0.0.0.0:32839 NBXPLORER_VERBOSE: 1 NBXPLORER_NOAUTH: 1 links: - litecoind bitcoind: container_name: btcpayserver_dev_bitcoind image: nicolasdorier/docker-bitcoin:0.15.0.1 environment: BITCOIN_EXTRA_ARGS: | rpcuser=ceiwHEbqWI83 rpcpassword=DwubwWsoo3 regtest=1 server=1 rpcport=43782 port=39388 whitelist=0.0.0.0/0 zmqpubrawblock=tcp://0.0.0.0:29000 zmqpubrawtx=tcp://0.0.0.0:29000 txindex=1 ports: - "43782:43782" expose: - "43782" # RPC - "39388" # P2P - "29000" # zmq litecoind: container_name: btcpayserver_dev_litecoind image: nicolasdorier/docker-litecoin:0.14.2 environment: BITCOIN_EXTRA_ARGS: | rpcuser=ceiwHEbqWI83 rpcpassword=DwubwWsoo3 regtest=1 server=1 rpcport=43782 port=39388 whitelist=0.0.0.0/0 zmqpubrawblock=tcp://0.0.0.0:29000 zmqpubrawtx=tcp://0.0.0.0:29000 txindex=1 ports: - "43783:43782" expose: - "43782" # RPC - "39388" # P2P - "29000" # zmq postgres: image: postgres:9.6.5 ports: - "39372:5432" expose: - "5432"