mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
e6420c82ca
* mysql/postgresql: move Dockerfiles and docker_compose to docker/test * Build client containers in CI * pass tag to docker_compose
12 lines
268 B
Docker
12 lines
268 B
Docker
# docker build -t yandex/clickhouse-mysql-php-client .
|
|
# MySQL PHP client docker container
|
|
|
|
FROM php:7.3-cli
|
|
|
|
COPY ./client.crt client.crt
|
|
COPY ./client.key client.key
|
|
COPY ./test.php test.php
|
|
COPY ./test_ssl.php test_ssl.php
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|