mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
20 lines
531 B
YAML
20 lines
531 B
YAML
version: '2.3'
|
|
services:
|
|
postgres1:
|
|
image: postgres
|
|
restart: always
|
|
ports:
|
|
- ${POSTGRES_EXTERNAL_PORT}:${POSTGRES_INTERNAL_PORT}
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
default:
|
|
aliases:
|
|
- postgre-sql.local
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: "trust"
|
|
POSTGRES_PASSWORD: mysecretpassword
|