1
0

Add Phoenixd support (#987)

* add phoenixd fragment

* define phoenixd as lightning implementation

* add btcpayserver section and hardcoded api password

* set correct phoenix datadir

* remove phoenixd->btcpayserver dependency

* use phoenixd 0.6.0

* added phoenix-cli scripts
This commit is contained in:
pm47
2025-05-27 15:41:41 +02:00
committed by GitHub
parent 1b5b46a993
commit 86ab6cdd21
6 changed files with 64 additions and 12 deletions

View File

@@ -0,0 +1,31 @@
version: "3"
services:
phoenixd:
image: acinq/phoenixd:0.6.0
container_name: phoenixd
restart: unless-stopped
networks:
- default
command: [
"--chain=${NBITCOIN_NETWORK:-regtest}",
"--http-password=ca2e61de4dbab98a0c0ed9a8713ec95b"
]
expose:
- "9740"
volumes:
- "phoenixd_datadir:/phoenix/.phoenix"
btcpayserver:
environment:
BTCPAY_BTCLIGHTNING: "type=phoenixd;server=http://phoenixd:9740;password=ca2e61de4dbab98a0c0ed9a8713ec95b"
volumes:
- "phoenixd_datadir:/etc/phoenix"
links:
- phoenixd
volumes:
phoenixd_datadir:
exclusive:
- lightning