mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-22 17:06:29 +00:00
18 lines
359 B
YAML
18 lines
359 B
YAML
version: "3"
|
|
services:
|
|
postgres:
|
|
image: postgres:14
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_HOST_AUTH_METHOD: md5
|
|
pgcat:
|
|
build: .
|
|
command:
|
|
- "pgcat"
|
|
- "/etc/pgcat/pgcat.toml"
|
|
volumes:
|
|
- "${PWD}/examples/docker/pgcat.toml:/etc/pgcat/pgcat.toml"
|
|
ports:
|
|
- "6432:6432"
|
|
- "9930:9930"
|