Docker Run Not Deploying

So, we followed the Docker tutorial ( https://docs.docker.com/get-started/part2/ ). Build works, command

docker run -p 4000:80 friendlyhello

works, but when we go to http: // localhost: 4000 , nothing is achieved. We just followed the tutorial step by step, but did not see anything.

Yes, we also went to localhost: 4001. Perhaps this is something related to the message "system pool is not available in windows"?

Here is a screenshot of our docker exit Console exit

+4
source share
1 answer

Firstly, speaking of the problem that you yourself mentioned, this is called a problem that cannot be fixed for Windows.

, 1.12.x, . .

level-info msg="Unable to use system certificate pool: crypto/x509: system root pool is not available on Windows"

main, , :

Error response from daemon: driver failed programming external connectivity on endpoint objective_joliot

, 4000 Docker VM , , . , , , Docker.

8080, :

docker run -d -p 8080:80 --name objective_joliot nginx

, !!!

0

Source: https://habr.com/ru/post/1678794/


All Articles