mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2026-01-18 21:44:23 +01:00
* Support regtest * Fix bindings, print and switch boltz client crate * Remove stop-grace-period * Fix docker compose issues * feat: add rt-sync to regtest setup * Configure local rtsync instance on default regtest config * Bump sdk-common rev * Fix compose restart missing quotation * Specify platform only in base configurations * Fix after rebase --------- Co-authored-by: yse <hydra_yse@proton.me>
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
STATE=$(docker container ls --filter name=boltz-scripts --format '{{.State}}')
|
|
|
|
if [ "$STATE" != "running" ] ;
|
|
then
|
|
set -xe
|
|
docker compose down --volumes
|
|
docker compose up --remove-orphans -d
|
|
fi
|