ClickHouse/tests/integration/test_mysql_protocol/clients/mysql/docker_compose.yml

14 lines
325 B
YAML
Raw Normal View History

2019-04-07 10:29:30 +00:00
version: '2.2'
services:
mysql1:
image: mysql:5.7
restart: always
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
command: --federated --socket /var/run/mysqld/mysqld.sock
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
interval: 1s
timeout: 2s
retries: 100