From 998bb35cf946cfdee25db35cca1eda5fad0fe82c Mon Sep 17 00:00:00 2001 From: Jonas Kaninda Date: Mon, 3 Oct 2022 11:43:13 +0200 Subject: [PATCH 1/2] Refactoring --- src/supervisor/supervisord.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/supervisor/supervisord.conf b/src/supervisor/supervisord.conf index 71e88fc..7003b50 100644 --- a/src/supervisor/supervisord.conf +++ b/src/supervisor/supervisord.conf @@ -1,6 +1,8 @@ [supervisord] - nodaemon=true - user=root +nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid [program:php-fpm] From 0cb8cdf99cda74a46f2e0eaac67bb790038ccd16 Mon Sep 17 00:00:00 2001 From: Jonas Kaninda Date: Mon, 3 Oct 2022 11:45:03 +0200 Subject: [PATCH 2/2] Update php version to 8.1.10 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e50b064..1e2e1ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.1.9-fpm +FROM php:8.1.10-fpm ARG WORKDIR=/var/www/html ENV DOCUMENT_ROOT=${WORKDIR} ENV LARAVEL_PROCS_NUMBER=1