ClickHouse/docker/test/integration/runner/compose/docker_compose_postgesql.yml
Ilya Yatsishin e6420c82ca
mysql/postgresql: move Dockerfiles and docker_compose to docker/test (#13448)
* mysql/postgresql: move Dockerfiles and docker_compose to docker/test
* Build client containers in CI
* pass tag to docker_compose
2020-08-12 18:04:36 +03:00

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"