From 847dd97780a6a4c8f2861ae2384496a4a202d209 Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Wed, 16 Jul 2025 23:06:20 +0530 Subject: [PATCH] Add healthchecks for syncyomi --- syncyomi/docker-compose.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/syncyomi/docker-compose.yml b/syncyomi/docker-compose.yml index 34a87f8..057d9bd 100644 --- a/syncyomi/docker-compose.yml +++ b/syncyomi/docker-compose.yml @@ -18,3 +18,10 @@ services: # Network configuration ports: - ${PORT}:8282 # Web interface port + + # Health check configuration + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8282"] + interval: 10s + timeout: 10s + retries: 3