I have the following DDEV config file:
name: whatever
type: php
docroot: public
php_version: "8.3"
webserver_type: nginx-fpm
database:
type: postgres
version: "15"
dbimage_extra_packages: [postgresql-postgis, postgis]
But when I try to enable the extension, it says that postgis is not installed in the container.
The official ddev docs don’t mention anything about this, so I wonder if anyone on Stackoverflow can shed some light on the matter.
Thanks.