ClickHouse/tests/integration/compose/docker_compose_postgresql.yml
2024-03-20 14:11:47 +00:00

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"