mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
This allows other plugins to avoid understanding the underlying details of how domains might be integrated with.
15 lines
321 B
Bash
Executable File
15 lines
321 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-domains-domains-add() {
|
|
declare desc="adds a domain to an app"
|
|
declare trigger="domains-add"
|
|
declare APP="$1" DOMAIN="$2"
|
|
|
|
domains_add "$APP" "$DOMAIN"
|
|
}
|
|
|
|
trigger-domains-domains-add "$@"
|