From 7bd5255c63366ef7b6d0ab0babd088d4d9ea93b3 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 23 Jun 2026 00:06:54 +0100 Subject: [PATCH] http.Dockerfile: runs php-fpm and nginx --- http.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/http.Dockerfile b/http.Dockerfile index 00dd77f..61231eb 100644 --- a/http.Dockerfile +++ b/http.Dockerfile @@ -4,3 +4,4 @@ COPY http/php /usr/share/nginx/php COPY http/out /usr/share/nginx/html COPY http/php-fpm.conf /etc/php/8.5/fpm/pool.d/joeac.net-http_pool.conf COPY http/nginx.conf /etc/nginx/nginx.conf +CMD php-fpm85 && nginx -g "daemon off;"