From 8e8907d56f06c9e56a85f6d1c7815966cbd1998e Mon Sep 17 00:00:00 2001 From: Mark Crossfield Date: Mon, 9 May 2022 11:13:50 +0100 Subject: [PATCH] Remove noise from docker console MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Send pgadmin access logs to /dev/null as we don’t care about them. See `GUNICORN_ACCESS_LOGFILE` in [environment variable docs](https://www.pgadmin.org/docs/pgadmin4/latest/container_deployment.html#environment-variables) for info. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index f5d4b7b..006b9ca 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -42,6 +42,7 @@ services: PGADMIN_DEFAULT_PASSWORD: SuperSecret PGADMIN_CONFIG_SERVER_MODE: "False" PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: "False" + GUNICORN_ACCESS_LOGFILE: /dev/null ports: - "5050:80" volumes: