From 231d439ef8657dbe5751abeaa184b63371b6b741 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sat, 18 Apr 2020 19:24:52 -0700 Subject: [PATCH] Remove plex_logs volume from Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49e89b5b..910f63fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,6 @@ COPY . /app CMD [ "python", "Tautulli.py", "--datadir", "/config" ] -VOLUME /config /plex_logs +VOLUME /config EXPOSE 8181 HEALTHCHECK --start-period=90s CMD curl -ILfSs http://localhost:8181/status > /dev/null || curl -ILfkSs https://localhost:8181/status > /dev/null || exit 1