tomsik68 / docker-xampp

Dockerfile to build an image containing XAMPP(MySQL + PHP + PHPMyAdmin) running on Debian system with SSH server
https://hub.docker.com/r/tomsik68/xampp/
MIT License
197 stars 109 forks source link

mssql xampp container docker #15

Closed rgreengo closed 3 years ago

rgreengo commented 6 years ago

Please, how i configure my php.ini in docker container running xampp 1.8.2, all services are ok. where is php.ini? i need .so or .dll?

tomsik68 commented 6 years ago

where is php.ini?

I'm not sure right now, but it should be located somewhere under /opt/lampp. Probably /opt/lampp/php/php.ini or maybe /opt/lampp/etc/php.ini or something similar. Also, search apache2 folder - I think some configurations place it there somewhere. In fact, you can use this little script to help yourself:

$ cd /opt/lampp
$ find . -type f -name 'php.ini' 

It may take a while but helps if you're too lazy to do it yourself or have no idea where to search...

i need .so or .dll?

The container is based on a Linux system, so the modules are in .so format. I highly recommend using a different container if there are modules you need that are not part of xampp. Xampp is good for quick start, but if you need something more, it could be better to use a multi-container with separate services.

tomsik68 commented 3 years ago

I'm closing this issue since it received no activity in a long time. Should this issue be up-to-date, feel free to re-open it. Thank you.