我们有一个dockerized应用程序,我们使用ubuntu 16.04在Compute Engine实例上导入。 它包含在端口80上运行的nginx反向代理,在/ etc / hosts中我们添加了127.0.0.1 mydockerizedapp
GCE获得了外部IP地址。 如何设置,以便当我从浏览器访问此外部IP时,我看到容器nginx提供的文件?
答案 0 :(得分:2)
通过映射,您必须在主机上expose the ports of your container。
如果您使用cli:--port-mappings=80:80:TCP