.
This commit is contained in:
parent
0462748336
commit
7c9a45edf5
11
templates/squashkiwi/nuke.sh
Normal file
11
templates/squashkiwi/nuke.sh
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
source "${AGENT_PATH}/_common.sh"
|
||||
_check_required_env_vars "LOCAL_DATA_FOLDER"
|
||||
|
||||
# remove the local data folder
|
||||
if [ -d "${LOCAL_DATA_FOLDER}" ]; then
|
||||
rm -rf ${LOCAL_DATA_FOLDER}
|
||||
fi
|
||||
|
||||
echo "Nuke of ${CONTAINER_NAME} complete"
|
||||
|
@ -12,8 +12,5 @@ _remove_container $CONTAINER_NAME || _die "Failed to remove container ${CONTAINE
|
||||
_is_container_running && _die "Couldn't stop existing container"
|
||||
_is_container_exists && _die "Couldn't remove existing container"
|
||||
|
||||
# remove the image
|
||||
docker rmi "$IMAGE_REGISTRY/$IMAGE_REPO:$IMAGE_TAG" || echo "Failed to remove image $IMAGE_REGISTRY/$IMAGE_REPO:$IMAGE_TAG"
|
||||
|
||||
echo "Uninstallation of ${CONTAINER_NAME} complete."
|
||||
echo "Local data folder ${LOCAL_DATA_FOLDER} still in place."
|
||||
|
Loading…
x
Reference in New Issue
Block a user