From ce8809c7b0a7f61b8427bb051fdcfbbf5d055316 Mon Sep 17 00:00:00 2001 From: "k.eaven" Date: Tue, 12 Aug 2025 15:04:20 -0700 Subject: [PATCH] Test push --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index e3d94ca..5d377fc 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -6,7 +6,7 @@ python generate_config.py && python pterodisbot.py & # Capture the application's process ID pid=$! -# Trap the SIGTERM signal and pass it through to the process upon stopping the container +# Trap the SIGTERM signal and pass it through to the process upon container receiving stop command trap "kill -TERM $pid" SIGTERM # Wait for process to complete