fix(service): nextcloud workers exhaustion due to low interval healthcheck (#9440)

This commit is contained in:
Andras Bacsai 2026-04-05 21:04:43 +02:00 committed by GitHub
commit 43fd840324
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@ services:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
interval: 2s
interval: 30s
timeout: 10s
retries: 15

View file

@ -29,7 +29,7 @@ services:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
interval: 2s
interval: 30s
timeout: 10s
retries: 15

View file

@ -29,7 +29,7 @@ services:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
interval: 2s
interval: 30s
timeout: 10s
retries: 15

View file

@ -18,6 +18,6 @@ services:
- nextcloud-data:/data
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
interval: 2s
interval: 30s
timeout: 10s
retries: 15