提问人:ANAFLY 提问时间:5/25/2023 最后编辑:ANAFLY 更新时间:5/25/2023 访问量:83
docker-compose up apache 无法启动
docker-compose up apache does not start
问:
我正在尝试运行一个项目。日志似乎还可以,但我无法到达我的 https://localhost。
docker-compose.yml
version: '3.5'
services:
## Reverse proxy Apache pour avoir un contexte https ISO prod
apache:
image: xxx:2.4.52-alpine
container_name: office-4e28-apache
network_mode: "host"
volumes:
- ./images/apache/configs/httpd.conf:/usr/local/apache2/conf/httpd.conf
- ./images/apache/configs/site.conf:/usr/local/apache2/conf/extra/site.conf
- ./images/apache/configs/xxx.local.crt:/usr/local/apache2/ssl/xxx.local.crt
- ./images/apache/configs/xxx.local.key:/usr/local/apache2/ssl/xxx.local.key
当我跑步时docker-compose up apache
没有端口 443 被占用(甚至没有 80), 我试图看看它是否有效,但是命令
sudo netstat -tulpn
不返回我们的端口。
我看到这样的警告
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
添加到日志中,但它们不必被阻止。
答: 暂无答案
评论
network_mode: host