Update docker-compose.yml

Use a test that fits the 'mysql:9' docker image (instead of a test that uses a 'mariadb' specific entrypoint).

Same fix as in joinloops/loops-server.git
pull/6383/head
Pim van Pelt 9 months ago committed by GitHub
parent c68fb2e771
commit 48d6562d4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,7 +14,7 @@ services:
volumes:
- ./mysql-9-data:/var/lib/mysql
healthcheck:
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-u", "root", "-p$$MYSQL_ROOT_PASSWORD"]
interval: 10s
timeout: 5s
retries: 3

Loading…
Cancel
Save