From 383b80df6b5d8cf57d1e6ddf1cf77d93ef8ba595 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 8 Jan 2024 20:45:23 +0100 Subject: [PATCH] Solved parameter bug --- templates/docker-service-postgres.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/docker-service-postgres.yml.j2 b/templates/docker-service-postgres.yml.j2 index 92b50760..f7a24ae4 100644 --- a/templates/docker-service-postgres.yml.j2 +++ b/templates/docker-service-postgres.yml.j2 @@ -7,7 +7,7 @@ - POSTGRES_PASSWORD={{database_password}} - POSTGRES_USER={{database_username}} - POSTGRES_DB={{database_name}} - - POSTGRES_INITDB_ARGS="--encoding=UTF8 --locale=C" + - POSTGRES_INITDB_ARGS=--encoding=UTF8 --locale=C restart: always healthcheck: test: ["CMD-SHELL", "pg_isready -U {{database_name}}"]