@@ -145,6 +145,7 @@ function dna::build_services() {
145145 n2st::print_msg_error " Build error, re-running ${MSG_DIMMED_FORMAT} dna::build_services${MSG_END_FORMAT} one service at the time"
146146 for idx in " ${! services_names[@]} " ; do
147147 if [[ " ${services_names[idx]} " == " project-core" ]]; then
148+ n2st::print_msg " Building project-core"
148149 project_core_build_idx=$idx
149150 dna::excute_compose --file " ${the_compose_file} " " ${build_docker_flag[@]} " project-core
150151 project_core_build_exit_code=$?
@@ -156,6 +157,7 @@ function dna::build_services() {
156157 # Execute docker cmd on all remaining service
157158 for each in " ${services_names[@]} " ; do
158159 if [[ " ${each} " != " project-core" ]]; then
160+ n2st::print_msg " Building ${each} "
159161 dna::excute_compose --file " ${the_compose_file} " " ${build_docker_flag[@]} " " ${each} "
160162 build_exit_code+=(" $? " )
161163 else
@@ -187,6 +189,7 @@ function dna::build_services() {
187189 # Rebuild and push the core image prior to building any other images
188190 for idx in " ${! services_names[@]} " ; do
189191 if [[ " ${services_names[idx]} " == " project-core" ]]; then
192+ n2st::print_msg " Building project-core"
190193 project_core_build_idx=$idx
191194 # Note:
192195 # - THIS WORK ON MacOs with buildx builder "docker-container:local-builder-multiarch-virtual"
@@ -205,6 +208,7 @@ function dna::build_services() {
205208 # Execute docker cmd on all remaining service
206209 for each in " ${services_names[@]} " ; do
207210 if [[ " ${each} " != " project-core" ]]; then
211+ n2st::print_msg " Building ${each} "
208212 dna::excute_compose --file " ${the_compose_file} " " ${build_docker_flag[@]} " " ${each} "
209213 build_exit_code+=(" $? " )
210214 else
0 commit comments