Browse Source

fix: missing options in ``--help`` options

Signed-off-by: Valentin Lab <valentin.lab@kalysto.org>
lokavaluto/dev/master
Valentin Lab 5 years ago
parent
commit
dd7bf70df8
  1. 11
      bin/compose-core

11
bin/compose-core

@ -3591,7 +3591,12 @@ display_help() {
echo " -d, --debug Print full debugging information (sets also verbose)" echo " -d, --debug Print full debugging information (sets also verbose)"
echo " --dry-compose-run If docker-compose will be run, only print out what" echo " --dry-compose-run If docker-compose will be run, only print out what"
echo " command line will be used." echo " command line will be used."
echo " --rebuild-relations-to-service, -R SERVICE"
echo " --no-relations Do not run any relation script"
echo " --no-hooks Do not run any init script"
echo " --no-init Do not run any init script"
echo " --without-relation RELATION "
echo " Do not run given relation"
echo " -R, --rebuild-relations-to-service SERVICE"
echo " Will rebuild all relations to given service" echo " Will rebuild all relations to given service"
echo " --add-compose-content, -Y YAML" echo " --add-compose-content, -Y YAML"
echo " Will merge some direct YAML with the current compose" echo " Will merge some direct YAML with the current compose"
@ -3885,7 +3890,7 @@ while read-0 arg; do
rebuild_relations_to_service+=("$value") rebuild_relations_to_service+=("$value")
shift shift
;; ;;
--debug)
--debug|-d)
export DEBUG=true export DEBUG=true
export VERBOSE=true export VERBOSE=true
#compose_opts+=("--verbose" "--log-level" "DEBUG") #compose_opts+=("--verbose" "--log-level" "DEBUG")
@ -4123,7 +4128,7 @@ if [ "$full_init" ]; then
fi fi
## Get relations ## Get relations
if [ -z "$no_relations" ]; then
if [[ -z "$no_relations" && -z "$no_hooks" ]]; then
if [ "${#rebuild_relations_to_service[@]}" != 0 ]; then if [ "${#rebuild_relations_to_service[@]}" != 0 ]; then
rebuild_relations_to_service=$(get_master_services "${rebuild_relations_to_service[@]}") || return 1 rebuild_relations_to_service=$(get_master_services "${rebuild_relations_to_service[@]}") || return 1
rebuild_relations_to_service=($rebuild_relations_to_service) rebuild_relations_to_service=($rebuild_relations_to_service)

Loading…
Cancel
Save