File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6262
6363# If there are multiple services to pull, run it in parallel (although this is now the default)
6464if [[ ${# pull_services[@]} -gt 1 ]] ; then
65- pull_params+=(" pull" " --parallel" " ${pull_services[@]} " )
65+ pull_params+=(" pull" " --parallel" " --include-deps " " ${pull_services[@]} " )
6666elif [[ ${# pull_services[@]} -eq 1 ]] ; then
67- pull_params+=(" pull" " ${pull_services[0]} " )
67+ pull_params+=(" pull" " --include-deps " " ${pull_services[0]} " )
6868fi
6969
7070# Pull down specified services
152152if [[ " $( plugin_read_config DEPENDENCIES " true" ) " == " true" ]] ; then
153153 echo " ~~~ :docker: Starting dependencies"
154154 if [[ ${# up_params[@]} -gt 0 ]] ; then
155- run_docker_compose " ${up_params[@]} " up -d --scale " ${run_service} =0" " ${run_service} "
155+ retry " $pull_retries " run_docker_compose " ${up_params[@]} " up -d --scale " ${run_service} =0" " ${run_service} "
156156 else
157- run_docker_compose up -d --scale " ${run_service} =0" " ${run_service} "
157+ retry " $pull_retries " run_docker_compose up -d --scale " ${run_service} =0" " ${run_service} "
158158 fi
159159
160160 # Sometimes docker-compose leaves unfinished ansi codes
You can’t perform that action at this time.
0 commit comments