Apache should just go to /var/www not /var/www/public when supporting multiple projects

This commit is contained in:
Marius van Zundert 2017-03-06 22:26:17 +01:00
parent 1d918a71d8
commit 25c2768557
1 changed files with 2 additions and 2 deletions

View File

@ -6,11 +6,11 @@ ARG PHP_SOCKET=php-fpm:9000
ENV WEB_PHP_SOCKET=$PHP_SOCKET
ENV WEB_DOCUMENT_ROOT=/var/www/public
ENV WEB_DOCUMENT_ROOT=/var/www/
EXPOSE 80 443
WORKDIR /var/www/public
WORKDIR /var/www/
ENTRYPOINT ["/opt/docker/bin/entrypoint.sh"]