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