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
I ran docker run --name some-drupal -p 8080:80 -d insready/drupal-commerce and then went to http://localhost:8080. The installation page loaded fine.
However, I cant move past the installation page due to:
Errors found
Configuration directory: sync
An automated attempt to create the directory ../config/sync failed, possibly due to a permissions problem. To proceed with the installation, either create the directory and modify its permissions manually or ensure that the installer has the permissions to create it automatically. For more information, see INSTALL.txt or the online handbook.
How can I resolve this?
The text was updated successfully, but these errors were encountered:
there is a permission issue on the config directory.
Try to enter in the container to check:
docker exec -it <your_container_Id> bash
I personally use for my testing volumes in a docker-compose file with a modified version of this repo and the onky ting I need to change is a couple of lines as well as change permission on my volumes indeed :)
so, to fix your issue (I believe following is more a workaround), yo ucan enter your docker container with command I provided in previous message and modify last row of the settings.php file from:
I ran
docker run --name some-drupal -p 8080:80 -d insready/drupal-commerce
and then went to http://localhost:8080. The installation page loaded fine.However, I cant move past the installation page due to:
How can I resolve this?
The text was updated successfully, but these errors were encountered: