31 lines
617 B
YAML
31 lines
617 B
YAML
version: "3.8"
|
|
services:
|
|
bitcoin-core:
|
|
container_name: bitcoind-main
|
|
expose:
|
|
- 8332
|
|
ports:
|
|
- 8333:8333
|
|
environment:
|
|
- BITCOIN_CHAIN=main
|
|
|
|
core-lightning:
|
|
container_name: lightningd-main
|
|
command:
|
|
- --conf=/home/lightning/.lightning/main-config
|
|
- --bitcoin-rpcconnect=bitcoind
|
|
expose:
|
|
- 9735
|
|
ports:
|
|
- 9735:9735
|
|
env_file:
|
|
- ./assets/main-env
|
|
environment:
|
|
- BITCOIN_CHAIN=main
|
|
|
|
txoo:
|
|
container_name: txoo-main
|
|
command:
|
|
- -r http://rpcuser:VLSsigner1@bitcoind:8332
|
|
environment:
|
|
- BITCOIN_CHAIN=main |