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