gpt4 book ai didi

docker - Traefik:级别=错误消息 =“field not found, node: mywebsite” providerName=docker

转载 作者:行者123 更新时间:2023-12-02 19:17:19 29 4
gpt4 key购买 nike

我正在使用 Gatsby 构建一个静态网站,我正在使用 Nginx为静态文件提供服务。
我也在设置Docker用于将应用程序部署到生产并使用 Traefik作为 Docker 容器中的反向代理。
Traefik运行在不同的容器上,而 Gatsby应用程序在不同的容器上运行 Nginx一起。
但是,当我在生产中运行应用程序时,出现此错误:

level=error msg="field not found, node: mywebsite" providerName=docker container=web-my-website


这是我的代码 :
Nginx 的 defualt.conf
server {
listen 3008;
add_header Cache-Control no-cache;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
expires -1;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Dockerfile
# Set base image
FROM node:latest AS builder

# Set working directory
WORKDIR /app

# Copy package.json and install packages
COPY package.json .
RUN npm install

# Copy other project files and build
COPY . ./
RUN npm run build

# Set nginx image
FROM nginx:latest

# Nginx config
RUN rm -rf /etc/nginx/conf.d/default.conf
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf

# Static build
COPY --from=builder /app/public /usr/share/nginx/html

# Set working directory
WORKDIR /usr/share/nginx/html

# Start Nginx server
CMD ["/bin/bash", "-c", "nginx -g \"daemon off;\""]
Gatsby 应用程序的 docker-compose.yml
version: "3"

services:
web:
image: my-website
build:
context: .
dockerfile: Dockerfile
expose:
- "3004"
labels:
- traefik.enable=true
- traefik.http.routers.mywebsite.rule=Host(`mywebsite.com`)
- traefik.http.services.educollectwebsite.loadbalancer.server.port=3004
restart: always
volumes:
- .:/app
networks:
default:
external:
name: traefik-proxy
Traefik 的 docker-compose.yml
version: "3"

services:
reverse-proxy:
# The official v2 Traefik docker image
image: traefik:v2.2
# Enables the web UI and tells Traefik to listen to docker
command:
- --api.insecure=true
- --entrypoints.web.address=:80
- --providers.docker=true
- --providers.docker.exposedbydefault=false
ports:
# The HTTP port
- "88:80"
# The Web UI (enabled by --api.insecure=true)
- "8088:8080"
restart: always
volumes:
# So that Traefik can listen to the Docker events
- /var/run/docker.sock:/var/run/docker.sock

networks:
default:
external:
name: traefik-proxy
我似乎无法弄清楚这里的问题是什么。任何形式的帮助将不胜感激。

最佳答案

在与我的直线经理一起工作了几个小时后,我终于能够解决它。
问题是我定义了端口 3008 Nginx default.conf 文件,然后定义端口 3004 Gatsby 应用程序的 docker-compose.yml 文件。这不允许流量从 Traefik 反向代理进入应用程序。因为两个端口都不一样。
解决方案 1 :
只需定义 3008 的相同端口在 Nginx default.conf 并在 Gatsby 应用程序的 docker-compose.yml 文件修复它:
Nginx 的 defualt.conf

server {
listen 3008;
add_header Cache-Control no-cache;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
expires -1;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Gatsby 应用程序的 docker-compose.yml
version: "3"

services:
web:
image: my-website
build:
context: .
dockerfile: Dockerfile
expose:
- "3004"
labels:
- traefik.enable=true
- traefik.http.routers.mywebsite.rule=Host(`mywebsite.com`)
- traefik.http.services.educollectwebsite.loadbalancer.server.port=3008
restart: always
volumes:
- .:/app
networks:
default:
external:
name: traefik-proxy
解决方案2:
在 Traefik 中定义默认端口是端口 80 Nginx default.conf 并在 Gatsby 应用程序的 docker-compose.yml 文件修复它。这在部署静态应用程序时更可取,因为它可以帮助我为应用程序假设一个合理的默认值。
Nginx 的 defualt.conf
server {
listen 80;
add_header Cache-Control no-cache;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
expires -1;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Gatsby 应用程序的 docker-compose.yml
version: "3"

services:
web:
image: my-website
build:
context: .
dockerfile: Dockerfile
expose:
- "80"
labels:
- traefik.enable=true
- traefik.http.routers.mywebsite.rule=Host(`mywebsite.com`)
restart: always
volumes:
- .:/app
networks:
default:
external:
name: traefik-proxy
备注 :使用与 Traefik 相同的端口,即应用程序中的端口 80,使对 Traefik 负载均衡器服务的需求无效。
- traefik.http.services.educollectwebsite.loadbalancer.server.port=80
就这样。
我希望这会有所帮助

关于docker - Traefik:级别=错误消息 =“field not found, node: mywebsite” providerName=docker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62678912/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com