ClickHouse/docker/test/integration/runner/compose/docker_compose_postgres_cluster.yml
2021-03-31 21:46:07 +00:00

24 lines
541 B
YAML

version: '2.3'
services:
postgres_1:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
ports:
- 5421:5432
postgres_2:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
ports:
- 5441:5432
postgres_3:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
ports:
- 5461:5432