Replies: 1 comment 1 reply
-
Hi! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I had a lot of issues with a missing postgresql driver, for example "Driver not found" when I tried to execute make:migrations. Finally resolved this by changing line 183 of the Dockerfile
from
docker-php-ext-install -j$(nproc) pdo_pgsql; \
to
docker-php-ext-install -j$(nproc) pdo pgsql pdo_pgsql; \
What do you think?
Cheers
Ludmila
Beta Was this translation helpful? Give feedback.
All reactions