the step of sintalling docker, is the same for everyone, navigate to “https://www.docker.com/products/docker-desktop/” and install.
Once installed, log out and log back in into your user-session.
Open powershell and clone the welcome-to-docker repo:
git clone https://github.com/docker/welcome-to-docker
navigate into the folder, and then type:
docker build -t welcome-to-docker .
This will build an image, based on the existing Dockerfile (typical file for docker images)
To [run] the container:
docker run -d -p 8088:80 --name welcome-to-docker docker/welcome-to-docker
In the browser, type: localhost:8088 and it should show the welcome screen.
To [stop] the container:
docker stop welcome-to-docker