mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
da28eaf454
#ci_set_integration
15 lines
298 B
YAML
15 lines
298 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"
|