mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
11 lines
318 B
Bash
Executable File
11 lines
318 B
Bash
Executable File
#!/usr/bin/bash
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
source ${current_dir}/base.sh # Get variables from base.
|
|
|
|
echo "Deleting container $CONTAINER_ID"
|
|
|
|
podman container stop "$CONTAINER_ID"
|
|
podman container rm -f "$CONTAINER_ID"
|