This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch development in repository https://gitbox.apache.org/repos/asf/airflow-pgbouncer-exporter.git
commit 8076cb43a939ede52e1abd7cd5f2fa0f8b70e757 Author: Juraj Bubniak <[email protected]> AuthorDate: Fri Jun 18 19:30:08 2021 +0200 Open postgres port. --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 9766a1c..ed8fa89 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,6 +4,8 @@ services: postgres: image: "postgres:12.3-alpine" restart: always + ports: + - "5432:5432" environment: POSTGRES_USER: "postgres" POSTGRES_PASSWORD: "postgres"
