当我使用 docker 构建容器时,我看不到我的 html

I can't see my html when I built container with docker

我的容器 运行ning 是这样的

在文件目录C:\Users\hailey\Desktop\GitTest我的工程文件所在的地方

# getting bse image nginx
FROM nginx 

MAINTAINER hailey

COPY . /usr/share/nginx/html

这是我的 docker 文件,我想 运行 我的 html 文件,它位于 C:\Users\hailey\Desktop\GitTest

当我访问 http://127.0.0.1:8080/ 我只看到这个页面,不是 helloWorld.html

您可以复制并替换 testhelloWorld.html 为 index.html

COPY testhelloWorld.html /usr/share/nginx/html/index.html