0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-08 14:40:05 +00:00

Remove --start-period argument in Dockerfile

I don't think it has any effect if it is lower than --interval
This commit is contained in:
Pēteris Caune 2024-10-23 13:15:48 +03:00
parent 5b689d9f87
commit 7225165f9e
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2

View file

@ -45,5 +45,5 @@ RUN mkdir /data && chown hc /data
USER hc
ENV USE_GZIP_MIDDLEWARE=True
HEALTHCHECK --interval=60s --start-period=10s --retries=1 CMD ./fetchstatus.py
HEALTHCHECK --interval=60s --retries=1 CMD ./fetchstatus.py
CMD [ "uwsgi", "/opt/healthchecks/docker/uwsgi.ini"]