We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d83ed commit aa2f797Copy full SHA for aa2f797
.github/docker/entrypoint.sh
@@ -3,7 +3,7 @@ cd /app
3
4
mkdir -p /var/log/panel/logs/ /var/log/supervisord/ /var/log/nginx/ /var/log/php7/ \
5
&& chmod 777 /var/log/panel/logs/ \
6
- && ln -s /var/log/panel/logs/ /app/storage/logs/
+ && ln -s /app/storage/logs/ /var/log/panel/
7
8
## check for .env file and generate app keys if missing
9
if [ -f /app/var/.env ]; then
Dockerfile
@@ -23,6 +23,7 @@ RUN apk add --no-cache --update ca-certificates dcron curl git supervisor tar un
23
&& chmod 777 -R bootstrap storage \
24
&& composer install --no-dev --optimize-autoloader \
25
&& rm -rf .env bootstrap/cache/*.php \
26
+ && mkdir -p /app/storage/logs/ \
27
&& chown -R nginx:nginx .
28
29
RUN rm /usr/local/etc/php-fpm.conf \
0 commit comments