sandcastle-ng

Scripts for the deployment of Sandcastle (GNU Taler)
Log | Files | Refs | README

commit 25b9d12b205bcc342a476a0e7bafa744b8209af2
parent 25e8dbe7864fdaf209163fd2fc6ed5d676853527
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
Date:   Mon,  9 Dec 2024 21:34:09 +0100

Add script sandcastle-stop.

Diffstat:
MREADME.md | 8++++++++
Asandcastle-stop | 7+++++++
2 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -81,6 +81,14 @@ You can manually verify these port mappings via ``podman port taler-sandcastle`` # Stopping the deployment +For stopping the deployment simply run + +``` +./sandcastle-stop +``` + +which is just a shortcut for + ``` podman stop taler-sandcastle ``` diff --git a/sandcastle-stop b/sandcastle-stop @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Stop the Taler container + +set -eu + +exec podman stop taler-sandcastle