fix: update plane-web for nginx-based stable image
All checks were successful
CI/CD / syntax-check (push) Successful in 2m41s
CI/CD / deploy (push) Successful in 11m24s

makeplane/plane-frontend:stable now uses nginx (not Next.js/node).
Remove `command: node web/server.js` override and update Traefik
port from 3000 to 80.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jack 2026-03-22 00:44:00 +07:00
parent 6afd298730
commit 679d3ed010

View file

@ -152,20 +152,17 @@ services:
image: {{ plane_frontend_image }}
container_name: plane-web
restart: unless-stopped
command: node web/server.js
depends_on:
- plane-api
networks:
- backend
- plane-internal
environment:
- NEXT_PUBLIC_API_BASE_URL=https://{{ domain_plane }}
labels:
- "traefik.enable=true"
- "traefik.http.routers.plane.rule=Host(`{{ domain_plane }}`)"
- "traefik.http.routers.plane.entrypoints=websecure"
- "traefik.http.routers.plane.tls.certresolver=letsencrypt"
- "traefik.http.services.plane.loadbalancer.server.port=3000"
- "traefik.http.services.plane.loadbalancer.server.port=80"
plane-api:
image: {{ plane_backend_image }}