From 421c0b52583b6b7757b6ee3fd503da46973e436b Mon Sep 17 00:00:00 2001 From: Arya Kiran Date: Sun, 14 Apr 2024 18:45:01 +0530 Subject: [PATCH] fix healthcheck endpoint path --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 022bfad..b23c816 100644 --- a/compose.yml +++ b/compose.yml @@ -7,7 +7,7 @@ services: ports: - "3000:3000" healthcheck: - test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/version || exit 1 + test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/version || exit 1 interval: 30s timeout: 5s retries: 2