1
0
Files
btcpayserver-docker/docker-compose-generator/docker-fragments/zcash.yml
macintoshhelper e38ede5eef Add Zcash support (#995)
* add zcash fragment with definition

* fix zcash port number

* fix zec db data and add zec lightwalletd fullnode opt

* fix zec lightwalletd zcash.conf error

* remove LWD_URL for main zec fragment

* set zcash docker image to latest

* revert zcash-walletd to 0.0.2

* move zec lwd_url back to zecrocks

* add zcash-fullnode exclusive fragment

* add fragment configs support

* fix compose generator configs

---------

Co-authored-by: macintoshhelper <6757532+macintoshhelper@users.noreply.github.com>
2025-07-01 11:15:52 +09:00

28 lines
688 B
YAML

version: "3"
services:
zcash_walletd:
restart: unless-stopped
image: 1337bytes/zcash-walletd:0.0.2
environment:
NOTIFY_TX_URL: http://btcpayserver:49392/zcashlikedaemoncallback/tx?cryptoCode=zec&hash=
ROCKET_DB_PATH: /data/zec-wallet.db
LWD_URL: https://zec.rocks:443
expose:
- "8000"
volumes:
- "zec_wallet:/data"
btcpayserver:
environment:
BTCPAY_ZEC_DAEMON_URI: http://zcash_walletd:8000
BTCPAY_ZEC_WALLET_DAEMON_URI: http://zcash_walletd:8000
BTCPAY_ZEC_WALLET_DAEMON_WALLETDIR: /root/zec_wallet
volumes:
- "zec_wallet:/root/zec_wallet"
volumes:
zec_wallet:
zec_data:
exclusive:
- zcash-node