我在 Mac 上运行 Apache HTTPD 服务器。我的 Docker Compose 文件位于 中~/httpd
,我希望我的 Apache 服务器运行 中的文件~/httpd/html
。
当我进入容器的 shell 时,html
目录是 connect。但是,检查网页时,它只显示默认的 Apache “It Works!” 网站,而不是我的网站。
以下是我的 Docker 编写文件的内容。
version: '3.8'
services:
web:
image: httpd
volumes:
- ./html:/Users/user/httpd/html
ports:
- 80:80