fix: change port to 3000 to match Dokploy settings

This commit is contained in:
2026-04-29 13:56:01 +05:30
parent ca5240aa6a
commit d72fe9e17b

View File

@@ -7,9 +7,8 @@ WORKDIR /app
# Set permissions # Set permissions
RUN chown -R www-data:www-data /app RUN chown -R www-data:www-data /app
# Expose port 8080 # Expose port 3000 (matching Dokploy configuration)
EXPOSE 8080 EXPOSE 3000
# Start the built-in PHP server on port 8080 (listening on all interfaces) # Start the built-in PHP server on port 3000 (listening on all interfaces)
# We use -t /app to set the document root CMD ["php", "-S", "0.0.0.0:3000", "-t", "/app"]
CMD ["php", "-S", "0.0.0.0:8080", "-t", "/app"]