diff --git a/templates/compose/nextcloud-with-mariadb.yaml b/templates/compose/nextcloud-with-mariadb.yaml index 60703f862..033423caf 100644 --- a/templates/compose/nextcloud-with-mariadb.yaml +++ b/templates/compose/nextcloud-with-mariadb.yaml @@ -28,7 +28,7 @@ services: redis: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] + test: ["CMD", "curl", "-f", "http://127.0.0.1:80/status.php"] interval: 30s timeout: 10s retries: 15 diff --git a/templates/compose/nextcloud-with-mysql.yaml b/templates/compose/nextcloud-with-mysql.yaml index 7d3027b9d..17d803c5d 100644 --- a/templates/compose/nextcloud-with-mysql.yaml +++ b/templates/compose/nextcloud-with-mysql.yaml @@ -28,7 +28,7 @@ services: redis: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] + test: ["CMD", "curl", "-f", "http://127.0.0.1:80/status.php"] interval: 30s timeout: 10s retries: 15 diff --git a/templates/compose/nextcloud-with-postgres.yaml b/templates/compose/nextcloud-with-postgres.yaml index b720704e2..0f717cd85 100644 --- a/templates/compose/nextcloud-with-postgres.yaml +++ b/templates/compose/nextcloud-with-postgres.yaml @@ -28,7 +28,7 @@ services: redis: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] + test: ["CMD", "curl", "-f", "http://127.0.0.1:80/status.php"] interval: 30s timeout: 10s retries: 15 diff --git a/templates/compose/nextcloud.yaml b/templates/compose/nextcloud.yaml index 84c0cf5c2..a5b783641 100644 --- a/templates/compose/nextcloud.yaml +++ b/templates/compose/nextcloud.yaml @@ -17,7 +17,7 @@ services: - nextcloud-config:/config - nextcloud-data:/data healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] + test: ["CMD", "curl", "-f", "http://127.0.0.1:80/status.php"] interval: 30s timeout: 10s retries: 15