Fixed some configurations to allow MySQL to run bigger files and corrected permissions for files for Windows users.

This commit is contained in:
William Brawner 2016-05-26 13:26:15 -05:00
parent f20aae3732
commit a609e12290

View file

@ -8,10 +8,13 @@ wget curl git
# Configure apache
COPY ./config/apache2.conf /etc/apache2/apache2.conf
RUN chmod 600 /etc/apache2/apache2.conf
RUN a2enmod rewrite
# Configure MySQL
COPY ./config/my.cnf /etc/mysql/my.cnf
RUN chmod 600 /etc/mysql/my.cnf
RUN service mysql start && mysql -u root --execute="GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '';"
EXPOSE 3306
# Install composer