From 0bfa70d18a5f6dd17d9437d7e41834a29f0502d1 Mon Sep 17 00:00:00 2001 From: Philihp Busby Date: Wed, 23 Apr 2025 20:13:20 +0000 Subject: [PATCH] feature: cleanup tmp PID file --- bin/docker-entrypoint-web | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/docker-entrypoint-web b/bin/docker-entrypoint-web index 5f481092..8733b36a 100755 --- a/bin/docker-entrypoint-web +++ b/bin/docker-entrypoint-web @@ -6,4 +6,7 @@ set -e # into your volume persisted public directory. cp -r /public /app +# This shouldn't be here, but failing to shutdown properly might leave this +rm -f /app/tmp/pids/server.pid + exec "$@"