71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
version: "3.8"
|
|
services:
|
|
bitcoin-core:
|
|
container_name: bitcoind-regtest
|
|
volumes:
|
|
- bitcoin_regtest:/home/bitcoin/.bitcoin
|
|
expose:
|
|
- 38332
|
|
ports:
|
|
- 38333:38333
|
|
environment:
|
|
- BITCOIN_CHAIN=regtest
|
|
|
|
core-lightning:
|
|
container_name: lightningd-regtest
|
|
volumes:
|
|
- lightning_regtest:/home/lightning/.lightning
|
|
command:
|
|
- --conf=/home/lightning/.lightning/regtest-config
|
|
- --bitcoin-rpcconnect=bitcoind
|
|
- --log-file=- # stdout
|
|
- --log-file=/home/lightning/.lightning/regtest/lightning.log
|
|
expose:
|
|
- 19846
|
|
ports:
|
|
- 19846:19846
|
|
- 37701:7701
|
|
environment:
|
|
- VLS_NETWORK=regtest
|
|
- BITCOIND_RPC_URL=http://rpcuser:VLSsigner1@bitcoind:38332
|
|
|
|
txoo:
|
|
container_name: txood-regtest
|
|
command:
|
|
- --no-checkpoint
|
|
volumes:
|
|
- txoo_regtest:/root/.txoo/
|
|
- bitcoin_regtest:/root/.bitcoin/
|
|
environment:
|
|
- BITCOIN_NETWORK=regtest
|
|
- BITCOIND_RPC_URL=http://rpcuser:VLSsigner1@bitcoind:38332
|
|
|
|
txoo-server:
|
|
container_name: txoo-server-regtest
|
|
volumes:
|
|
- type: volume
|
|
source: txoo_regtest
|
|
target: /usr/share/nginx/html
|
|
volume:
|
|
subpath: regtest/public
|
|
|
|
vls:
|
|
container_name: vlsd-regtest
|
|
volumes:
|
|
- vls_regtest:/home/vls/.lightning-signer
|
|
environment:
|
|
- VLS_NETWORK=regtest
|
|
- BITCOIND_RPC_URL=http://rpcuser:VLSsigner1@bitcoind:38332
|
|
|
|
lss:
|
|
container_name: lss-regtest
|
|
volumes:
|
|
- lss_regtest:/home/lss/.lss
|
|
|
|
volumes:
|
|
bitcoin_regtest:
|
|
lightning_regtest:
|
|
txoo_regtest:
|
|
vls_regtest:
|
|
lss_regtest:
|