From d72fe9e17b46d98de271ca6a914359c8fc606609 Mon Sep 17 00:00:00 2001 From: Suriya Date: Wed, 29 Apr 2026 13:56:01 +0530 Subject: [PATCH] fix: change port to 3000 to match Dokploy settings --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7fdcb33..0275241 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,8 @@ WORKDIR /app # Set permissions RUN chown -R www-data:www-data /app -# Expose port 8080 -EXPOSE 8080 +# Expose port 3000 (matching Dokploy configuration) +EXPOSE 3000 -# Start the built-in PHP server on port 8080 (listening on all interfaces) -# We use -t /app to set the document root -CMD ["php", "-S", "0.0.0.0:8080", "-t", "/app"] +# Start the built-in PHP server on port 3000 (listening on all interfaces) +CMD ["php", "-S", "0.0.0.0:3000", "-t", "/app"]