Why does the docker container still work after stopping it and opening the URL bound to the container in a browser?

background: x64 win10 Professional Edition system, using docker for windows, version 18.03.0-ce
1, pulling 2048 Mini Game images from the official repository;
2, through the command:

docker run -d -p 127.0.0.1:5080:80 alexwhen/docker-2048

Open the container and bind it to the local address 127.0.0.1,
3. The container can be accessed normally after the browser opens 127.0.0.1.
4. Close the container through the ID of the container you just opened through the stop command, but after closing it and opening 127.0.0.1 ID through the browser, you can still enter the Mini Game page. The page cannot be accessed until the container is deleted. Why?

all kinds of bosses ask for advice ~

Sep.16,2021

is due to browser cache

Menu