From 559ab4e2a80b616f3d12c1447c23ede900e9eb29 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Fri, 27 Mar 2026 16:29:52 -0400 Subject: [PATCH] upd: entrypoint Make sure the change the permissions to the var folder everytime we restart --- bin/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index b0c8774..3c83dc9 100755 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -2,5 +2,7 @@ # Start the cron service in the background service cron start +chown -R www-data:www-data /var/www/html/var + # Execute the default Docker CMD (which starts Apache in the foreground) exec "$@" \ No newline at end of file