ClickHouse/tests/integration/compose/docker_compose_mysql_client.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
316 B
YAML
Raw Normal View History

2019-04-07 10:29:30 +00:00
services:
2021-04-13 14:55:31 +00:00
mysql_client:
image: mysql:8.0
restart: always
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
command: --federated --socket /var/run/mysqld/mysqld.sock
healthcheck:
2021-02-20 18:59:45 +00:00
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
interval: 1s
timeout: 2s
retries: 100