mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 01:16:30 +00:00
* create a hyper server and add option to enable it in config * move prometheus stuff to its own file; update format * create metric type and help lookup table * finish the metric help type map * switch to a boolean and a standard port * dont emit unimplemented metrics * fail if curl returns a non 200 * resolve conflicts * move log out of config.show and into main * terminating new line * upgrade curl * include unimplemented stats
18 lines
359 B
YAML
18 lines
359 B
YAML
version: "3"
|
|
services:
|
|
postgres:
|
|
image: postgres:13
|
|
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"
|
|
- "9090:9090"
|