From ab8f2f7188beb92d18d0067081b1e39c4de5bdef Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Wed, 15 May 2019 22:47:08 -0400 Subject: [PATCH] Added crond --- entrypoint.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index c3469b7..758f533 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,7 +1,10 @@ #!/bin/sh echo "[ INFO ] Starting PHP-FPM" -php-fpm7 -D +php-fpm7 -D # Background + +echo "[ INFO ] Starting cron" +crond # Background echo "[ INFO ] Starting nginx" -nginx -g "daemon off;" \ No newline at end of file +nginx -g "daemon off;" # Foreground \ No newline at end of file