From 31a2b03d89c2cdaff64763c82d208b22fa715ea7 Mon Sep 17 00:00:00 2001 From: Deon George Date: Sun, 5 Feb 2023 00:15:02 +1100 Subject: [PATCH] Laravel APP_ENV should default to production, not live --- docker/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/init b/docker/init index 780688c..37d30eb 100755 --- a/docker/init +++ b/docker/init @@ -2,7 +2,7 @@ set -e role=${CONTAINER_ROLE:-app} -env=${APP_ENV:-live} +env=${APP_ENV:-production} php=${PHP_DIR:-/var/www/html} composer=${COMPOSER_HOME:-/var/cache/composer}