mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
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.
15 lines
364 B
Bash
Executable File
15 lines
364 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-haproxy-vhosts-post-create() {
|
|
declare desc="haproxy-vhosts post-create trigger"
|
|
declare trigger="post-create"
|
|
declare APP="$1"
|
|
|
|
fn-plugin-property-setup-app "haproxy" "$APP"
|
|
}
|
|
|
|
trigger-haproxy-vhosts-post-create "$@"
|