fix: correction configuration blindbit - Utilisation de l image officielle setavenger/blindbit-oracle - Correction des parametres RPC (rpc_user, rpc_pass, rpc_endpoint) - Ajustement de la commande et du working_dir
Some checks failed
CI - 4NK_node / Code Quality (push) Failing after 32s
CI - 4NK_node / Unit Tests (push) Failing after 29s
CI - 4NK_node / Integration Tests (push) Failing after 12s
CI - 4NK_node / Security Tests (push) Failing after 27s
CI - 4NK_node / Docker Build & Test (push) Failing after 9s
CI - 4NK_node / Documentation Tests (push) Failing after 4s
CI - 4NK_node / Security Audit (push) Successful in 3s
CI - 4NK_node / Release Guard (push) Has been skipped
CI - 4NK_node / Performance Tests (push) Successful in 27s
CI - 4NK_node / Notify (push) Failing after 2s
CI - 4NK_node / Publish Release (push) Has been skipped

This commit is contained in:
Debian 2025-09-03 16:07:59 +00:00
parent 9701f47e25
commit 51719f5345
2 changed files with 13 additions and 5 deletions

View File

@ -5,11 +5,11 @@ host = "0.0.0.0:8000"
chain = "signet"
# Point d'accès RPC Bitcoin (sans cookie, autorisé par rpcallowip)
rpc_endpoint = "http://4nk-bitcoin:38332"
rpc_endpoint = "http://4nk-bitcoin:18443"
# Auth RPC non requise (bitcoin.conf restreint par rpcallowip)
rpc_user = ""
rpc_pass = ""
# Auth RPC Bitcoin
rpc_user = "bitcoin"
rpc_pass = "bitcoin"
# Hauteur de départ pour la synchronisation
sync_start_height = 1

View File

@ -36,7 +36,9 @@ services:
ports:
- "8000:8000"
volumes:
- ./conf/blindbit.toml:/home/bitcoin/blindbit.toml:ro
- ./conf/blindbit.toml:/blindbit/blindbit.toml:ro
command: ["/main", "--datadir", "/blindbit"]
working_dir: /
networks:
- 4nk_network
restart: unless-stopped
@ -54,6 +56,8 @@ services:
container_name: 4nk-sdk-storage
ports:
- "8081:8081"
volumes:
- ./conf/sdk_storage.conf:/usr/local/bin/sdk_storage.conf:ro
networks:
- 4nk_network
restart: unless-stopped
@ -72,6 +76,8 @@ services:
ports:
- "8090:8090"
- "8091:8091"
volumes:
- ./conf/sdk_relay1.conf:/usr/local/bin/sdk_relay.conf:ro
networks:
- 4nk_network
restart: unless-stopped
@ -89,6 +95,8 @@ services:
container_name: 4nk-sdk-signer
ports:
- "9090:9090"
volumes:
- ./conf/sdk_signer.conf:/usr/local/bin/sdk_signer.conf:ro
networks:
- 4nk_network
restart: unless-stopped