Files
dokku/plugins/openresty-vhosts/post-create
Jose Diaz-Gonzalez e397604841 refactor: move the labels to the properties folder
To be quite honest, these should just be in the docker-options plugin, but I think its fine to have them tracked separately for now.
2025-11-16 17:59:46 -05:00

15 lines
372 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
trigger-openresty-vhosts-post-create() {
declare desc="openresty-vhosts post-create trigger"
declare trigger="post-create"
declare APP="$1"
fn-plugin-property-setup-app "openresty" "$APP"
}
trigger-openresty-vhosts-post-create "$@"