added some new endpoints and links in readme

This commit is contained in:
Oscar Krause
2022-12-29 10:31:25 +01:00
parent ed1b55f5f1
commit a09fc5f2ad
5 changed files with 34 additions and 17 deletions

View File

@@ -14,5 +14,5 @@ COPY app /app
COPY version.env /version.env
COPY README.md /README.md
HEALTHCHECK --start-period=30s --interval=10s --timeout=5s --retries=3 CMD curl --insecure --fail https://localhost/status || exit 1
HEALTHCHECK --start-period=30s --interval=10s --timeout=5s --retries=3 CMD curl --insecure --fail https://localhost/-/health || exit 1
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "443", "--app-dir", "/app", "--proxy-headers", "--ssl-keyfile", "/app/cert/webserver.key", "--ssl-certfile", "/app/cert/webserver.crt"]