我的电脑上装有 Windows 10 Home,并安装了 WSL2。在 WSL 中,我使用以下docker-compose.yml
文件运行 Docker:
version: "3"
services:
httpd:
image: 'nginx:stable-alpine'
ports:
- '80:80'
volumes:
- ./:/var/www/html
- ./.docker-config/nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- php
- mysql
networks:
- mynet
php:
build:
context: ./.docker-config/dockerfiles
dockerfile: php.dockerfile
volumes:
- ./:/var/www/html:delegated
networks:
- mynet
networks:
mynet:
driver: bridge
我./.docker-config/nginx/nginx.conf
有这样的配置:
server {
listen 80;
index index.php index.html;
server_name localhost;
root /var/www/html/public;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
我使用以下命令启动我的 Docker 容器:
docker-compose up -d
我hosts
使用 WSL2 当前 IP 地址将我的自定义域添加到 Windows 中的文件中。
在 Power Shell 中,我尝试 ping 我的域并且它正在响应,所以我认为主机配置很好。
但如果我尝试在浏览器中访问我的域名,则没有响应。错误消息是ERR_CONNECTION_TIMED_OUT
。
奇怪的是,昨天它还能正常工作,但配置文件没有任何变化。今天电脑(当然还有 WSL2 和 Docker)已关闭并启动。
知道这里发生了什么吗?我该如何避免将来发生这种情况?
更新
我更改了网络名称,重新启动了 docker,一切正常。但我不明白这里发生了什么。我仍然在等待答案以了解此问题的原因。
谢谢!