From 8b39d11ffc7be409896043cf4f42b1b4c5aa4cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Augustyniak?= Date: Fri, 23 Feb 2024 10:08:13 +0100 Subject: [PATCH] passed to env --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a65011e..f88c536 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -49,9 +49,9 @@ services: ports: - 3456:5432 environment: - POSTGRES_USER: llm # The PostgreSQL user (useful to connect to the database) - POSTGRES_PASSWORD: llm # The PostgreSQL password (useful to connect to the database) - POSTGRES_DB: llm # The PostgreSQL default database (automatically created at first launch) + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + - POSTGRES_DB=${POSTGRES_DB} volumes: - postgres-juddges-db:/var/lib/postgresql/data networks: