parameters:# Adds a fallback DATABASE_URL if the env var is not set.# This allows you to run cache:warmup even if your# environment variables are not available yet.# You should not need to change this value.env(DATABASE_URL):''doctrine:dbal:# configure these for your database serverdriver:'pdo_mysql'server_version:'mariadb-10.3.11'charset:utf8mb4default_table_options:charset:utf8mb4collate:utf8mb4_unicode_ciurl:'%env(resolve:DATABASE_URL)%'orm:auto_generate_proxy_classes:truenaming_strategy:doctrine.orm.naming_strategy.underscore_number_awareauto_mapping:truemappings:App:is_bundle:falsetype:xmldir:'%kernel.project_dir%/config/doctrine/entity'prefix:'App\Domain\Model'alias:App
Note: Be sure your driver and server_version match your VM config.
Note: Change your mapping prefix according to your project.