mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
The URLS file is no longer necessary as urls are now generated directly from the app VHOST file. This also moves all the url generation logic to the domains plugin.
18 lines
384 B
Bash
Executable File
18 lines
384 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
|
|
|
|
trigger-domains-install() {
|
|
declare desc="domains install trigger"
|
|
declare trigger="install"
|
|
|
|
shopt -s nullglob
|
|
for app in $(dokku_apps "false" 2>/dev/null); do
|
|
domains_setup "$app"
|
|
rm -f "$DOKKU_ROOT/$APP/URLS"
|
|
done
|
|
}
|
|
|
|
trigger-domains-install "$@"
|