Fixed some configurations to allow MySQL to run bigger files and corrected permissions for files for Windows users.
This commit is contained in:
parent
f20aae3732
commit
a609e12290
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue