We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1479c06 commit b2c694eCopy full SHA for b2c694e
Dockerfile
@@ -17,6 +17,8 @@ RUN apt-get update && \
17
rm -Rf /var/cache/* && \
18
a2enmod rewrite && \
19
rm /etc/apache2/sites-enabled/000-default && \
20
+ # To support file written on mounted volumes
21
+ usermod -u 1000 -s /bin/false www-data && groupmod -g 1000 www-data && \
22
# To resolve issue "Could not reliably determine the server's fully qualified domain name..."
23
echo "ServerName localhost" >> /etc/apache2/ports.conf
24
COPY 000-project.conf /etc/apache2/sites-enabled/
0 commit comments