From 9853250fda2feb79b25f4dc0272cebab13986320 Mon Sep 17 00:00:00 2001 From: Marco Paganini Date: Mon, 30 Mar 2020 00:21:22 -0700 Subject: [PATCH] Remove healthcheck feature (systemd log spam). --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1bcde41..57b0719 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,11 @@ VOLUME ["/store", "/config"] COPY recorder.conf /config/recorder.conf -HEALTHCHECK CMD /usr/local/sbin/recorder-health.sh +# If you absolutely need health-checking, enable the option below. Keep in +# mind that until https://github.com/systemd/systemd/issues/6432 is resolved, +# using the HEALTHCHECK feature will cause systemd to generate a significant +# amount of spam in the system logs. +# HEALTHCHECK CMD /usr/local/sbin/recorder-health.sh EXPOSE 8083