If during the install process, when running the initial WordPress setup, it fails to save wp-config.php - the cause is likely that WordPress doesn't have permissions to write files. It'll need them eventually. A quick fix for local development is to make literally everything writable:
sudo chmod -R 777 lighthouse
The hint to do that was picked up from this Docker + WordPress guide: https://www.sitepoint.com/how-to-use-the-official-docker-wordpress-image/
If during the install process, when running the initial WordPress setup, it fails to save
wp-config.php- the cause is likely that WordPress doesn't have permissions to write files. It'll need them eventually. A quick fix for local development is to make literally everything writable:The hint to do that was picked up from this Docker + WordPress guide: https://www.sitepoint.com/how-to-use-the-official-docker-wordpress-image/