Merge pull request #127 from pimlie/patch-1

fix: healthcheck in Dockerfile
This commit is contained in:
Matthew Esposito 2024-06-04 22:48:51 -04:00 committed by GitHub
commit afad65f204
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ USER redlib
EXPOSE 8080
# Run a healthcheck every minute to make sure redlib is functional
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1
CMD ["redlib"]