wsl2 + docker 启动nginx容器无法访问node容器的端口

发布于 2022-09-12 03:29:24 字数 1935 浏览 35 评论 0

背景:想在win10子系统里用docker启动nginx和node服务,宿主机可以通过配置hosts的www.testweb.com域名访问node服务。

系统环境:win10子系统wsl2 的 ubuntu20.04

node代码:

const express = require('express')
const app = express()
const port = 3000

app.get('/', (req, res) => res.send('Hello World!'))

app.listen(port, '0.0.0.0', () => console.log(`Example app listening on port ${port}!`))

docker-compose.yml

# yaml 配置实例
version: '3'
services:
  node-server:
    image: node:10.19
    working_dir: /home/project/node-server
    command: node index.js
    restart: always # 自动重启
    container_name: node-server
    volumes:
      - ../node-server:/home/project/node-server
    ports:
      - 3000:3000
    expose: 
      - '3000'
    networks: 
      - front
      
  nginx:
    image: nginx:latest
    ports:
      - '80:80'
    container_name: nginx-node
    restart: always
    volumes: 
      - './website/nginx.conf:/etc/nginx/nginx.conf:ro'
      - './website/servers:/etc/nginx/servers:ro'
    networks: 
      - front
    links:
      - node-server
    depends_on: 
      - node-server
    extra_hosts:
      - 'www.testweb.com:127.0.0.1'
networks: 
  front:

nginx的配置:

server {
    listen 80;
    server_name  www.testweb.com;

    ## send request back to apache ##
    location / {
        # 接口代理转发 #
        proxy_pass  http://localhost:3000;
   }
}

宿主机的hosts:

127.0.0.1 www.testweb.com

控制台运行:

docker-compose -f "docker-dev/docker-compose.yml" up -d --build

docker-dev是子系统的一个目录。

目前找到的问题:两个容器之间连着front网络,无法进行容器间的访问,在nginx-node容器通过curl http://localhost:3000命令,提示访问被拒绝。

在宿主机路浏览器访问:
image.png

请问有大神可以指点一下吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三岁铭 2022-09-19 03:29:24

你的问题在于 nginx 的 proxy_pass 是 127.0.0.1

我没记错的话, 你应该改成

proxy_pass  http://node-server:3000;

就行了, 即目标容器的"主机名", docker 内会有 dns 服务帮你解决解析

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文