From a3b3219f9c34abf46bb10c87d3afd68974da9581 Mon Sep 17 00:00:00 2001 From: "Eric Neville (GT: eneville3)" <64903750+coolbrewed@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:18:49 -0400 Subject: [PATCH] Add zippy healthcheck test command Addresses two issues: - [Podman requires a healthcheck test command](https://github.com/ddev/ddev-phpmyadmin/issues/29), and will fail without it. - Any accurate healthcheck test command for phpMyAdmin will [take forever to run](https://github.com/ddev/ddev-phpmyadmin/pull/2) (80+ seconds!) This commit adds a placeholder healthcheck test command that always returns true as soon as the container is responsive in local development, addressing both issues. --- docker-compose.phpmyadmin.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.phpmyadmin.yaml b/docker-compose.phpmyadmin.yaml index 4551e27..54f6140 100644 --- a/docker-compose.phpmyadmin.yaml +++ b/docker-compose.phpmyadmin.yaml @@ -23,6 +23,7 @@ services: - HTTP_EXPOSE=8036:80 - HTTPS_EXPOSE=8037:80 healthcheck: + test: ["CMD-SHELL", "true"] interval: 120s timeout: 2s retries: 1