From 4dcf37f2d2797d49f9848e5749ee55f458883977 Mon Sep 17 00:00:00 2001 From: Ed Sabol Date: Mon, 15 Sep 2025 19:44:45 -0400 Subject: [PATCH 1/2] Add touch command to create /var/lib/haproxy/server-state The following warning appears in docker-service-proxy service logs after HAProxy was updated: [WARNING] 257/231940 (1) : Can't open global server state file '/var/lib/haproxy/server-state': No such file or directory Adding this touch command to the Dockerfile will create the server-state file in the Docker image and silence this warning. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1ec174c..25aca9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,5 +33,6 @@ ENV ALLOW_RESTARTS=0 \ VOLUMES=0 COPY docker-entrypoint.sh /usr/local/bin/ COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg.template +RUN touch /var/lib/haproxy/server-state USER root CMD ["haproxy", "-f", "/tmp/haproxy.cfg"] From 1813b891aeb75e787b70f269a0c3e3174742d315 Mon Sep 17 00:00:00 2001 From: Ed Sabol Date: Tue, 16 Dec 2025 02:19:06 -0500 Subject: [PATCH 2/2] Retrigger CI checks