Well, I've been studying docker here and along with that I want to create a php server (by its built-in server) and then access that server from my HOST machine.
I ran the following command:
docker run -it -p 8080:8080 -v "D:\git\slim-saa:/home" -w "/home" my_opensuse_slim php -S localhost:8080 -t public public/index.php
After running this command, the server runs normally:
Portsandvolumesaremappednormally(Ithinkkk):
ButwhenIgotomymachineandaccessthelocalhost:8080,Icannotaccessanything:
Do you have any idea what I did wrong?