mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
37 lines
785 B
Bash
Executable File
37 lines
785 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/config/functions"
|
|
|
|
case "$1" in
|
|
config)
|
|
config_all "$@"
|
|
;;
|
|
|
|
config:get)
|
|
config_get "$@"
|
|
;;
|
|
|
|
config:set)
|
|
config_set "$@"
|
|
;;
|
|
|
|
config:unset)
|
|
config_unset "$@"
|
|
;;
|
|
|
|
help | config:help)
|
|
cat<<EOF
|
|
config (<app>|--global), Display all global or app-specific config vars
|
|
config:get (<app>|--global) KEY, Display a global or app-specific config value
|
|
config:set (<app>|--global) KEY1=VALUE1 [KEY2=VALUE2 ...], Set one or more config vars
|
|
config:unset (<app>|--global) KEY1 [KEY2 ...], Unset one or more config vars
|
|
EOF
|
|
;;
|
|
|
|
*)
|
|
exit $DOKKU_NOT_IMPLEMENTED_EXIT
|
|
;;
|
|
|
|
esac
|