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"]