NginX + PHP on Windows 10

Installing Nginx on Windows Download NginX files from: https://nginx.org/en/docs/windows.html. Unzip to C\{name-version} (Which in my case would be C:\nginx-1.25.4). Open PowerShell as an Administrator and lunch server by typing cmd: start nginx Every time you will...

How to get docker container IP address

You can get container IP by inspecting the container ID or tag name. # docker inspect <containerIDorName> | grep \”IPAddress\”: docker inspect test4 | grep \”IPAddress\”: You can also get container ID by entering the container with exec...