This commit is contained in:
Your Name
2025-05-03 20:13:21 +12:00
parent ec779e51c2
commit 866046b505
7 changed files with 84 additions and 2 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
# NUKE SCRIPT
# Gets run after uninstall.sh
source "$(dirname "$0")/_common.sh"
check_required_env_vars "CONTAINER_NAME" "VOLUME_NAME"
docker volume rm $VOLUME_NAME || die "Failed to remove volume ${VOLUME_NAME}"
echo "Nuking of ${CONTAINER_NAME} complete."