mirror of
https://github.com/dokku/dokku.git
synced 2026-09-03 04:32:26 +02:00
This PR uses the new syntax for commands introduced in Docker 1.13, making it a bit easier to understand just what a particular command is trying to do. This also pushes the long-form syntax for docker command flags, which are also easier to understand at a glance.
23 lines
682 B
Bash
Executable File
23 lines
682 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")
|
|
if [[ -n $APP ]]; then
|
|
# remove contents for apps that are symlinks to other folders
|
|
rm -rf "${DOKKU_ROOT:?}/$APP/" >/dev/null
|
|
# then remove the folder and/or the symlink
|
|
rm -rf "${DOKKU_ROOT:?}/$APP" >/dev/null
|
|
fi
|
|
|
|
# shellcheck disable=SC2046
|
|
"$DOCKER_BIN" image rm $("$DOCKER_BIN" image list --quiet "$IMAGE_REPO" | xargs) &>/dev/null || true
|
|
}
|
|
|
|
app_post_delete "$@"
|