refactor(web): change old port (7003) and deploy port (80) to port 8082

This commit is contained in:
Acbox
2026-02-14 19:51:55 +08:00
parent 7817ec8147
commit 82e9f12b7f
18 changed files with 219 additions and 62 deletions
+2 -2
View File
@@ -27,9 +27,9 @@ COPY --from=builder /build/packages/web/dist /usr/share/nginx/html
COPY docker/config/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
EXPOSE 8082
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost/health || exit 1
CMD wget --no-verbose --tries=1 --spider http://localhost:8082/health || exit 1
CMD ["nginx", "-g", "daemon off;"]