Browse Source

Revert "ci: remove redundant healthchecks"

This reverts commit 59697c60e6.

Signed-off-by: rare-magma <rare-magma@posteo.eu>
pull/3614/head
rare-magma 1 year ago
parent
commit
dfbd7178db
Failed to extract signature
  1. 5
      docker/docker-compose.build.yml
  2. 6
      docker/docker-compose.yml

5
docker/docker-compose.build.yml

@ -16,6 +16,11 @@ services:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ['CMD-SHELL', 'curl -f http://localhost:3333/api/v1/health']
interval: 10s
timeout: 5s
retries: 5
postgres:
image: postgres:15
env_file:

6
docker/docker-compose.yml

@ -28,7 +28,11 @@ services:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ['CMD-SHELL', 'curl -f http://localhost:3333/api/v1/health']
interval: 10s
timeout: 5s
retries: 5
postgres:
image: docker.io/library/postgres:15
cap_drop:

Loading…
Cancel
Save