Saving port clarification.

This commit is contained in:
Scott Idem
2026-03-16 12:41:29 -04:00
parent eaa18a1d45
commit 5f3ba1e03e

View File

@@ -30,6 +30,7 @@ RUN pip freeze > /tmp/aether_fastapi_requirements_current.txt
# Docker health check — verifies DB + Redis connectivity via the /health route.
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD curl -f http://localhost/health || exit 1
# CMD curl -f http://localhost/health || exit 1
CMD curl -f http://localhost:5005/health || exit 1
CMD ["gunicorn", "--conf", "/conf/gunicorn_fastapi_conf.py"]