From a25d3524481554130829c33029063cd0015c4137 Mon Sep 17 00:00:00 2001 From: flovntp Date: Thu, 28 Nov 2024 17:36:24 +0100 Subject: [PATCH] Update manifest.json If you don't set the "entry" port, then Docker would generate a random one and then, when executing Symfony Cli command, it fails. This would let the user to just start your docker container and then update doctrine schema (or run migration) as `5432` is the port configured in the default `.env` --- doctrine/doctrine-bundle/2.9/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine/doctrine-bundle/2.9/manifest.json b/doctrine/doctrine-bundle/2.9/manifest.json index 1d8996a72..e1bba16e8 100644 --- a/doctrine/doctrine-bundle/2.9/manifest.json +++ b/doctrine/doctrine-bundle/2.9/manifest.json @@ -39,7 +39,7 @@ "services": [ "database:", " ports:", - " - \"5432\"" + " - \"5432:5432\"" ] } },