Skip to content
Snippets Groups Projects
Commit e2998c11 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fixing directory permissions in dockerfile

parent bf88bded
No related branches found
No related tags found
2 merge requests!1502Development,!1488Resolve "ResultLoader needs to be fixed"
......@@ -36,7 +36,9 @@ COPY config/nginx-default.conf /etc/nginx/conf.d/default.conf
COPY --chown=root:nginx . /html
RUN chmod -R g+w storage bootstrap/cache
CMD /etc/init.d/cron start && \
CMD chown -R root:nginx storage/logs/metager bootstrap/cache && \
chmod -R g+w storage/logs/metager bootstrap/cache && \
/etc/init.d/cron start && \
/etc/init.d/php7.3-fpm start && \
/etc/init.d/nginx start && \
/etc/init.d/redis-server start && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment