ClickHouse/docker/test/integration/runner/compose/docker_compose_postgresql.yml

15 lines
298 B
YAML
Raw Normal View History

2020-05-30 17:04:02 +00:00
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:
2021-02-20 18:59:45 +00:00
POSTGRES_HOST_AUTH_METHOD: "trust"