We have been using Docker and the public repository nanoserver/wamp in Dockerhub in implemeting our project. We've been able to use the system as we use PHP and an external MySQL server for our database.
Now, our database is shifting to MSSQL and in order to access MSSQL we need to have sqlsrv .dll files in the C:\php\ext folder
But one pre-requisite of the sqlsrv is the MSODBC driver and I cannot find a way to download an .msi file inside nanoserver because of its restrictions.
Is there a way to just copy and paste the ODBC files into the nanoserver so we can use sqlsrv into our php project? Or are there any way to connect to an MSSQL database?
I have tried this, but it's still not working:
COPY msodbcsql13.dll C:/Windows/System32/
COPY msodbcsql11.dll C:/Windows/System32/
COPY msodbcdiag13.dll C:/Windows/System32/
COPY msodbcdiag11.dll C:/Windows/System32/
COPY msodbcsqlr13.rll C:/Windows/System32/1033/
COPY msodbcsqlr11.rll C:/Windows/System32/1033/
Basis for the files is from https://learn.microsoft.com/en-us/sql/connect/odbc/windows/system-requirements-installation-and-driver-files?view=sql-server-2017
I haven't tried the public repository microsoft/windowsservercore as it offers IIS-PHP, and we need an Apache-PHP configuration and I do not know how to set it up there. By any chance, if it only work with this repo, can you point me on how to install Apache-PHP in microsoft/windowsservercore?
Turns out, there is really no way to install sqlsrv into nanoserver since it requires installing the dependencies with an .msi filetype.
I'll just share how to setup apache-php setup into microsoft/windowsservercore