Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m3s
CI/CD Pipeline / Security Scanning (push) Successful in 2m58s
CI/CD Pipeline / Lint and Format (push) Failing after 46s
CI/CD Pipeline / Terraform Validation (push) Failing after 26s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 29s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 41s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 22s
OMNL reconcile anchor / Run omnl:reconcile and upload artifacts (push) Failing after 24s
Validation / validate-genesis (push) Successful in 32s
Validation / validate-terraform (push) Failing after 28s
Validation / validate-kubernetes (push) Failing after 13s
Validation / validate-smart-contracts (push) Failing after 12s
Validation / validate-security (push) Failing after 1m31s
Validation / validate-documentation (push) Failing after 23s
Verify Deployment / Verify Deployment (push) Failing after 1m4s
Add BTC L1 settle/reconcile/ledger APIs, bitcoind intake, cBTC PMM hot-LP scripts, and custody credential smoke tests (secrets stay gitignored). Enables full-prod local green health and server pull-deploy for secure.omdnl.org /btc/*. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
610 B
YAML
24 lines
610 B
YAML
# Local regtest bitcoind for BTC intake E2E
|
|
# Usage: docker compose -f docker-compose.bitcoind-regtest.yml up -d
|
|
|
|
services:
|
|
bitcoind-regtest:
|
|
image: bitcoin/bitcoin:27.0
|
|
container_name: omnl-bitcoind-regtest
|
|
ports:
|
|
- "18443:18443"
|
|
volumes:
|
|
- ./data/bitcoind-regtest:/home/bitcoin/.bitcoin
|
|
command:
|
|
- -regtest=1
|
|
- -server=1
|
|
- -txindex=1
|
|
- -rpcuser=omnl
|
|
- -rpcpassword=omnl-regtest-local
|
|
- -rpcallowip=0.0.0.0/0
|
|
- -rpcbind=0.0.0.0
|
|
- -rpcport=18443
|
|
- -fallbackfee=0.0002
|
|
- -printtoconsole=1
|
|
restart: unless-stopped
|