From 6c74090a663a167bad9f584648103346668969b4 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 8 Nov 2020 18:00:29 +0100 Subject: [PATCH] Keep going regardless of failure --- entrypoint.sh.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index 6db2e0e..adfb13f 100644 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -31,8 +31,8 @@ echo "Running entrypoint commands against '$FOODSOFT_SERVICE' service" echo "------------------------------------------------------------------------------" if [ "$FOODSOFT_SERVICE" == "app" ]; then - bundle exec rake db:setup - bundle exec rake db:migrate + bundle exec rake db:setup || true + bundle exec rake db:migrate || true ./proc-start web elif [ "$FOODSOFT_SERVICE" == "cron" ]; then ./proc-start cron