File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
samples/laravel-crud-boilerplate Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -181,9 +181,9 @@ _main() {
181181 if [[ -n " ${remote_deployment_failure_strategy} " ]]; then
182182 remote_deployment_run_on_remotes
183183 fi
184- echo " [NOTICE] Successfully built the App image for Production deployment : ${new_state} " && exit 0
184+ display_checkpoint_message " [NOTICE] Deployed the App image for all Production servers... Check the detailed logs. (100%) " && exit 0
185185 else
186- echo " [NOTICE] App image binary saved to ./.docker/binary/${project_name} " && exit 0
186+ display_checkpoint_message " [NOTICE] App image binary saved to ./.docker/binary/${project_name} ... (100%) " && exit 0
187187 fi
188188 fi
189189
Original file line number Diff line number Diff line change 1- FROM php:7.4-fpm-buster as backend-build
1+ FROM php:7.4-fpm-bullseye AS backend-build
22
33RUN apt-get -qqy update && apt-get -qqy upgrade
44
@@ -44,7 +44,7 @@ WORKDIR /var/www/app
4444RUN composer install --prefer-dist --optimize-autoloader --no-interaction
4545
4646
47- FROM php:7.4-fpm-buster as production
47+ FROM php:7.4-fpm-bullseye AS production
4848
4949ARG server
5050
You can’t perform that action at this time.
0 commit comments