Compare commits

..

5 Commits

Author SHA1 Message Date
c430e82cbb Renamed the host key 2025-09-15 14:58:35 +02:00
e67e7e311f Deleted a non used volume 2025-09-15 14:58:14 +02:00
36355b1fd5 Removed storage and ia from docker compose 2025-09-15 14:57:56 +02:00
2a84a8ed67 Deleted test line for the relay 2025-09-15 14:57:18 +02:00
d41c8dbcde Deleted a space in .env.exemple 2025-09-15 14:56:38 +02:00
3 changed files with 2 additions and 29 deletions

View File

@ -37,7 +37,6 @@ PORT=
API_BASE_URL=
DEFAULT_STORAGE=
# Variables d'environnement pour l'application front-end
NEXT_PUBLIC_4NK_URL=
NEXT_PUBLIC_FRONT_APP_HOST=

View File

@ -1,5 +1,5 @@
# Configuration pour blindbit-oracle
host = "0.0.0.0:8000"
http_host = "0.0.0.0:8000"
# Définit la chaîne sur laquelle le wallet fonctionne
chain = "signet"

View File

@ -44,7 +44,7 @@ services:
- bitcoin_data:/home/bitcoin/.bitcoin
entrypoint: >
sh -c "cp /tmp/blindbit.toml /root/.blindbit-oracle/blindbit.toml &&
./main"
./main -datadir /root/.blindbit-oracle"
networks:
btcnet:
aliases:
@ -82,10 +82,6 @@ services:
- RUST_LOG=DEBUG
entrypoint: >
/bin/sh -lc '
echo "[relay] waiting for blindbit:8000...";
until [ "$(curl -s -o /dev/null -w "%{http_code}" http://blindbit:8000)" != "000" ]; do sleep 2; done
echo "[relay] waiting for bitcoind RPC 38332...";
until [ "$(curl -s -o /dev/null -w "%{http_code}" http://bitcoin:38332)" != "000" ]; do sleep 2; done
mkdir -p /home/bitcoin/.4nk/logs
exec /usr/local/bin/sdk_relay --config /home/bitcoin/.conf 2>&1 | tee -a /home/bitcoin/.4nk/logs/sdk_relay.log
'
@ -141,27 +137,6 @@ services:
- "com.centurylinklabs.watchtower.enable=true"
restart: unless-stopped
sdk_storage:
image: git.4nkweb.com/4nk/sdk_storage:dev
container_name: sdk_storage
networks:
btcnet:
aliases:
- sdk_storage
labels:
- "com.centurylinklabs.watchtower.enable=true"
restart: unless-stopped
IA:
image: alpine:latest
container_name: IA
command: tail -f /dev/null
networks:
btcnet:
aliases:
- ia
restart: unless-stopped
watchtower:
image: containrrr/watchtower
container_name: watchtower
@ -177,7 +152,6 @@ volumes:
name: 4nk_node_bitcoin_data
blindbit_data:
sdk_data:
db_data:
networks:
btcnet: