From 7f66b3dadffdef920ccdb6ab8ca0fc5977975381 Mon Sep 17 00:00:00 2001 From: "Michael D. M. Dryden" Date: Mon, 13 Nov 2023 23:16:35 -0500 Subject: [PATCH] Modify docker-compose file to set up host authentication with md5 --- CHANGELOG.rst | 1 + docker-compose.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a4ebbbd..7dc3af7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -31,6 +31,7 @@ Fixed ----- - Date selection for word statistics was broken - Incorrect datatype for column in user_events table +- Modify docker-compose file to set up host authentication with md5 ---------- `0.7.0`_ - 2023-01-14 diff --git a/docker-compose.yml b/docker-compose.yml index ffc67e4..379ab74 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,6 +24,7 @@ services: environment: POSTGRES_PASSWORD: password POSTGRES_DB: telegram_bot + POSTGRES_HOST_AUTH_METHOD: md5 # psycopg seems to have issues with scram-sha-256 volumes: db-data: \ No newline at end of file