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

15 lines
391 B
YAML

version: '2.3'
services:
postgres1:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
ports:
- 5432:5432
command: [ "postgres", "-c", "wal_level=logical", "-c", "max_replication_slots=2"]
networks:
default:
aliases:
- postgre-sql.local