I used DDEV on linux now I am trying to make it run on Windows. I have successfully installed Docker and DDEV. When I am in my PHP project directory and I type : ddev launch
Then a tutorial page gets opened with this url: http://MyProjectDirectory.ddev.site/tutorial/ The Tutorial page says that i ran the following command: docker run -d -p 80:80 docker/getting-started
But I dont want to see the tutorial page I want to host my project.
I think its a bug with the ports. When I click a link on the docker tutorial page, a view of my project gets rendered or I get an 404 Error. Thats really wierd
EDIT SOLVED(but still need help): After changing router_http_port: "80" to router_http_port: "8000" in config.yaml my project is getting hosted properly. I figured out, that the Docker tutorial page uses port 80, thats why I am getting to the Docker Tutorial page when trying to host my project. Everytime i type localhost in the url I am getting to http://localhost/tutorial/ and the Docker tutorial page shows up and says :
Congratulations! You have started the container for this tutorial! Let's first explain the command that you just ran. In case you forgot, here's the command: docker run -d -p 80:80 docker/getting-started
This page shows up even after restarting my PC and Docker ist not running, how can I get rid of this