From b1b582b7326d4049e361b96d27b6fc28bb4f644a Mon Sep 17 00:00:00 2001 From: Maxime Veber Date: Fri, 22 Oct 2021 16:40:32 +0200 Subject: [PATCH] feat: DATABSE_URL configured sync with postgresql PostgreSQL is configured in docker-compose.yaml file in the same manifest but with another configuration. The purpose of this commit is to make it ready by default to reduce what the user is supposed to change at install time. --- doctrine/doctrine-bundle/2.4/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine/doctrine-bundle/2.4/manifest.json b/doctrine/doctrine-bundle/2.4/manifest.json index 995a953a..66e4e857 100644 --- a/doctrine/doctrine-bundle/2.4/manifest.json +++ b/doctrine/doctrine-bundle/2.4/manifest.json @@ -12,7 +12,7 @@ "#3": "", "#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"", "#5": "DATABASE_URL=\"mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7\"", - "DATABASE_URL": "postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=13&charset=utf8" + "DATABASE_URL": "postgresql://symfony:ChangeMe@127.0.0.1:5432/app?serverVersion=13&charset=utf8" }, "dockerfile": [ "RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\",