diff --git a/docs/dockerfile.html b/docs/dockerfile.html index 49e695d2..83e00013 100644 --- a/docs/dockerfile.html +++ b/docs/dockerfile.html @@ -245,18 +245,18 @@
FROM lipanski/docker-static-website:latest
+FROM wcjiang/docker-static-website:latest
# 使用 .dockerignore 文件来控制镜像中的内容!
# 复制当前目录内容,到容器中
COPY ./ .
这会产生一个 154KB +
的单层镜像。 如果您需要以不同的方式配置 httpd
,您可以覆盖 CMD 行:
-FROM lipanski/docker-static-website:latest
+FROM wcjiang/docker-static-website:latest
COPY . .
CMD ["/busybox","httpd","-f","-v","-p","3000","-c","httpd.conf"]
-缩小镜像过程查看原文,镜像 Dockerfile 源码。
+缩小镜像过程查看原文,镜像 Dockerfile 源码。