mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
e6420c82ca
* mysql/postgresql: move Dockerfiles and docker_compose to docker/test * Build client containers in CI * pass tag to docker_compose
14 lines
297 B
YAML
14 lines
297 B
YAML
version: '2.2'
|
|
services:
|
|
psql:
|
|
image: postgres:12.2-alpine
|
|
restart: always
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
ports:
|
|
- "5433:5433"
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: "trust" |