修复健康检查命令

This commit is contained in:
whyour
2023-12-24 15:48:34 +08:00
parent 563457cf1b
commit 37bcb77be0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -70,6 +70,6 @@ COPY --from=builder /tmp/build/node_modules/. /ql/node_modules/
WORKDIR ${QL_DIR}
HEALTHCHECK --interval=5s --timeout=2s --retries=20 \
CMD curl -sf http://127.0.0.1:5400/api/health || exit 1
CMD curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1
ENTRYPOINT ["./docker/docker-entrypoint.sh"]