mirror of
https://github.com/dokku/dokku.git
synced 2025-12-25 16:29:30 +01:00
19 lines
672 B
Bash
Executable File
19 lines
672 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
|
|
app_post_delete() {
|
|
declare desc="apps post-delete plugin trigger"
|
|
local trigger="app_post_delete"
|
|
local APP="$1"; local IMAGE_REPO=$(get_app_image_repo "$APP")
|
|
[[ -n $APP ]] && rm -rf "${DOKKU_ROOT:?}/$APP" > /dev/null
|
|
|
|
# remove all application containers & images
|
|
# shellcheck disable=SC2046
|
|
docker rm -f $(docker ps -a --no-trunc | egrep "dokku/${APP}:" | awk '{ print $1 }' | xargs) &>/dev/null || true
|
|
# shellcheck disable=SC2046
|
|
docker rmi $(docker images -q "$IMAGE_REPO" | xargs) &>/dev/null || true
|
|
}
|
|
|
|
app_post_delete "$@"
|