You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you noticed that the prestashop container building crash at "usermod -u 1000 www-data" i solved this problem by removing the last two lines
#RUN usermod -u 1000 www-data
#RUN chown 1000 /var/www -R
and i added RUN chmod 755 /var/www/html to solve folder rights issue :)
The text was updated successfully, but these errors were encountered:
What does the log output? The best thing would be to get the uid automatically from the host via docker-compose.yml, and add to the dockerfile as a build parameter.
Hi,
if you noticed that the prestashop container building crash at "usermod -u 1000 www-data" i solved this problem by removing the last two lines
#RUN usermod -u 1000 www-data
#RUN chown 1000 /var/www -R
and i added RUN chmod 755 /var/www/html to solve folder rights issue :)
The text was updated successfully, but these errors were encountered: