![]() |
Spark on Docker not working - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Spark on Docker not working (/showthread.php?tid=92264) |
Spark on Docker not working - lokischw - 01-02-2025 Hi Folks! I'm trying to setup my application with CI 4.5 on docker, but when I try to migrate and seed nothing occurs. It just give me back an " " response. What am I missing? Here's my Dockerfile: Code: FROM php:8.2.27-apache and Here's my docker-compose: Code: services: And if I try to run spark on Vendor's folder, it works correctly. I've already tried to copy to my app base folder, but same result. What am I missing? RE: Spark on Docker not working - lokischw - 01-03-2025 Solved by creating, in dockerfile, the following folders: writable/logs writable/cache writable/session RE: Spark on Docker not working - InsiteFX - 01-04-2025 Also if the folder is changed from default spark will not work unless you edit it and change the path to the new folder. |