nginx – 我的docker容器没有在Docker for Windows(使用Hyper-V的Native)上的localhost(0.0.0.0)上启动

前端之家收集整理的这篇文章主要介绍了nginx – 我的docker容器没有在Docker for Windows(使用Hyper-V的Native)上的localhost(0.0.0.0)上启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在关注如何启动Nginx docker容器的Digital Ocean’s tutorial(目前在第4步).目前这是他们的输出

$docker run --name docker-Nginx -p 80:80 -d Nginx
d3ccb73a91985651ec61231bca9f9c716f0dec807e354a29eeef2144f883a01c

$docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED              STATUS              PORTS                         NAMES
b91f3ce26553        Nginx               "Nginx -g 'daemon off"   About a minute ago   Up About a minute   0.0.0.0:80->80/tcp,443/tcp   docker-Nginx

但是当我运行它时,这是我的输出(注意到容器的不同IP):

C:\>docker run --name docker-Nginx -p 80:80 -d Nginx
d3ccb73a91985651ec61231bca9f9c716f0dec807e354a29eeef2144f883a01c

C:\>docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                           NAMES
d3ccb73a9198        Nginx               "Nginx -g 'daemon off"   14 hours ago        Up 2 seconds        10.0.75.2:80->80/tcp,443/tcp   docker-Nginx

为什么会这样?我怎样才能获得与Digital Ocean相同的结果? (让服务器在localhost上启动)

编辑:我正在使用Docker for windows(最近发布),显然使用Hyper-V运行本机.我对docker-machine ls的输出是这样的:

C:\>docker-machine ls
NAME   ACTIVE   DRIVER   STATE   URL   SWARM   DOCKER   ERRORS

C:\>

But when I run it,this is my output (noticed the different IP of the
container)

由于这是一台Windows机器,我假设您使用的是Docker ToolBox Docker for Windows. 10.0.75.2是boot2docker虚拟机的IP.

如果您使用的是Windows或Mac OS,则需要使用某种形式的虚拟化
为了运行Docker.您刚看到的IP是该轻量级虚拟机的IP.

And how can I get the same results as Digital Ocean’s? (Getting the
server to start on localhost)

使用Linux发行版!您还可以在Docker For Windows设置中的localhost上启用Expose容器端口:

enter image description here

原文链接:https://www.f2er.com/nginx/434727.html

猜你在找的Nginx相关文章