Update Dockerfile and docker-compose.yml
This commit is contained in:
+2
-3
@@ -6,7 +6,7 @@ RUN docker-php-ext-install pdo pdo_mysql
|
||||
# Enable Apache mod_rewrite
|
||||
RUN a2enmod rewrite
|
||||
|
||||
# Configure PHP settings for upload limit (matching application config 10MB limit)
|
||||
# Configure PHP settings
|
||||
RUN echo "upload_max_filesize = 16M" > /usr/local/etc/php/conf.d/uploads.ini \
|
||||
&& echo "post_max_size = 16M" >> /usr/local/etc/php/conf.d/uploads.ini \
|
||||
&& echo "memory_limit = 256M" >> /usr/local/etc/php/conf.d/uploads.ini
|
||||
@@ -17,5 +17,4 @@ COPY . /var/www/html/
|
||||
# Set correct permissions
|
||||
RUN chown -R www-data:www-data /var/www/html/
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user