From fce86792e7df3fa5dd1647cb08c04306ba876299 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Fri, 15 Dec 2017 16:37:42 +0000 Subject: [PATCH] Use inline syntax for healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4bad380..061f782 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN set -ax \ && chmod +x /usr/sbin/start_pms \ && find /tmp -mindepth 1 -delete -HEALTHCHECK --interval=30s --timeout=12s CMD wget -O /dev/null -T 10 -q localhost:32400/identity || exit 1 +HEALTHCHECK --interval=30s --timeout=12s CMD [ "wget", "-O", "/dev/null", "-T", "10", "-q", "localhost:32400/identity" ] WORKDIR /usr/lib/plexmediaserver