Files
breez-sdk-liquid/regtest/start.sh
Daniel Granhão 99d8765681 Support regtest (#707)
* 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>
2025-02-07 16:00:59 +00:00

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