From 1799d4980a63d4664153df22b0928e7da57ba2f1 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 06:33:09 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Format=20healthcheck=20?= =?UTF-8?q?commands=20for=20better=20readability=20in=20production=20Docke?= =?UTF-8?q?r=20Compose=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docker-compose.production.yml | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/code/websites/pokedex.online/docker-compose.production.yml b/code/websites/pokedex.online/docker-compose.production.yml index 26508b8..4e5bcd3 100644 --- a/code/websites/pokedex.online/docker-compose.production.yml +++ b/code/websites/pokedex.online/docker-compose.production.yml @@ -17,7 +17,15 @@ services: networks: - pokedex-network healthcheck: - test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:80/'] + test: + [ + 'CMD', + 'wget', + '--quiet', + '--tries=1', + '--spider', + 'http://localhost:80/' + ] interval: 30s timeout: 10s retries: 3 @@ -50,7 +58,15 @@ services: networks: - pokedex-network healthcheck: - test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:3000/health'] + test: + [ + 'CMD', + 'wget', + '--quiet', + '--tries=1', + '--spider', + 'http://localhost:3000/health' + ] interval: 30s timeout: 10s retries: 3