From 19d7776bfdb079246f91144d97bc996ccf69da6a Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Thu, 25 Jan 2024 09:52:37 +0530 Subject: [PATCH] scripts: cleanup regtest script - destroy containers - delete all regtest volumes Signed-off-by: Lakshya Singh --- scripts/cleanup_regtest.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/cleanup_regtest.sh diff --git a/scripts/cleanup_regtest.sh b/scripts/cleanup_regtest.sh new file mode 100755 index 0000000..960565c --- /dev/null +++ b/scripts/cleanup_regtest.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -ex + +docker compose --profile vls down +docker volume rm vls-container_bitcoin_regtest +docker volume rm vls-container_lightning_regtest +docker volume rm vls-container_vls_regtest +docker volume rm vls-container_txoo_regtest