<bdo id='M4fms'></bdo><ul id='M4fms'></ul>
    <i id='M4fms'><tr id='M4fms'><dt id='M4fms'><q id='M4fms'><span id='M4fms'><b id='M4fms'><form id='M4fms'><ins id='M4fms'></ins><ul id='M4fms'></ul><sub id='M4fms'></sub></form><legend id='M4fms'></legend><bdo id='M4fms'><pre id='M4fms'><center id='M4fms'></center></pre></bdo></b><th id='M4fms'></th></span></q></dt></tr></i><div id='M4fms'><tfoot id='M4fms'></tfoot><dl id='M4fms'><fieldset id='M4fms'></fieldset></dl></div>

      1. <legend id='M4fms'><style id='M4fms'><dir id='M4fms'><q id='M4fms'></q></dir></style></legend>
      2. <tfoot id='M4fms'></tfoot>

        <small id='M4fms'></small><noframes id='M4fms'>

        如何在 symfony yml 配置文件中从 docker 获取环境变

        时间:2023-10-04
        <tfoot id='2NV1e'></tfoot>
      3. <i id='2NV1e'><tr id='2NV1e'><dt id='2NV1e'><q id='2NV1e'><span id='2NV1e'><b id='2NV1e'><form id='2NV1e'><ins id='2NV1e'></ins><ul id='2NV1e'></ul><sub id='2NV1e'></sub></form><legend id='2NV1e'></legend><bdo id='2NV1e'><pre id='2NV1e'><center id='2NV1e'></center></pre></bdo></b><th id='2NV1e'></th></span></q></dt></tr></i><div id='2NV1e'><tfoot id='2NV1e'></tfoot><dl id='2NV1e'><fieldset id='2NV1e'></fieldset></dl></div>

            <tbody id='2NV1e'></tbody>

          <legend id='2NV1e'><style id='2NV1e'><dir id='2NV1e'><q id='2NV1e'></q></dir></style></legend>
          1. <small id='2NV1e'></small><noframes id='2NV1e'>

              <bdo id='2NV1e'></bdo><ul id='2NV1e'></ul>

                1. 本文介绍了如何在 symfony yml 配置文件中从 docker 获取环境变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在 docker-compose.yml 中:

                  in docker-compose.yml:

                  mysql:
                    image: mysql:latest
                    container_name: mysql
                    environment:
                      - MYSQL_ROOT_PASSWORD=root
                      - MYSQL_DATABASE=symfony
                      - MYSQL_USER=symfony
                      - MYSQL_PASSWORD=symfony
                  

                  如何在 yml 配置文件中获取此变量:

                  how i can get this variables in yml config file:

                  parameters:
                      database_host: 172.17.42.4
                      database_port: 3306
                      database_name: symfony
                      database_user: symfony
                      database_password: symfony
                  

                  在 $_SERVER 中,它们的获取方式如下:

                  in $_SERVER they are fetch like:

                  $_SERVER["SYMFONY_MYSQL_ENV_MYSQL_DATABASE"],
                  $_SERVER["SYMFONY_MYSQL_PORT_3306_TCP_ADDR"],
                  $_SERVER["SYMFONY_MYSQL_ENV_MYSQL_PASSWORD"],
                  $_SERVER["SYMFONY_MYSQL_ENV_MYSQL_USER"]
                  

                  推荐答案

                  在 symfony 中,你可以在 yaml 配置中包含 PHP 文件,你可以在运行时设置参数,覆盖来自 parameters.yml 的静态参数值.

                  In symfony, you can include PHP files in yaml configuration, where you can set parameters in runtime overriding the static parameter values from parameters.yml.

                  在你的 app/config/config.yml

                  In your app/config/config.yml

                  imports:
                      - { resource: parameters.yml }
                      - { resource: parameters.php }
                  

                  然后使用以下内容创建文件 app/config/parameters.php

                  Then create the file app/config/parameters.php with the following content

                  <?php
                  // app/config/parameters.php
                  
                  $container->setParameter('database_name', $_SERVER['SYMFONY_MYSQL_ENV_MYSQL_DATABASE']);
                  $container->setParameter('database_host', $_SERVER['SYMFONY_MYSQL_PORT_3306_TCP_ADDR']);
                  $container->setParameter('database_user', $_SERVER['SYMFONY_MYSQL_ENV_MYSQL_USER']);
                  $container->setParameter('database_password', $_SERVER['SYMFONY_MYSQL_ENV_MYSQL_PASSWORD']);
                  

                  这篇关于如何在 symfony yml 配置文件中从 docker 获取环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Docker-Compose 不会处理我的 php.ini 文件 下一篇:php artisan migrate错误:提供或不知道节点名或服务名

                  相关文章

                  最新文章

                  <legend id='FlKWO'><style id='FlKWO'><dir id='FlKWO'><q id='FlKWO'></q></dir></style></legend>

                      <bdo id='FlKWO'></bdo><ul id='FlKWO'></ul>
                    <tfoot id='FlKWO'></tfoot>

                    <i id='FlKWO'><tr id='FlKWO'><dt id='FlKWO'><q id='FlKWO'><span id='FlKWO'><b id='FlKWO'><form id='FlKWO'><ins id='FlKWO'></ins><ul id='FlKWO'></ul><sub id='FlKWO'></sub></form><legend id='FlKWO'></legend><bdo id='FlKWO'><pre id='FlKWO'><center id='FlKWO'></center></pre></bdo></b><th id='FlKWO'></th></span></q></dt></tr></i><div id='FlKWO'><tfoot id='FlKWO'></tfoot><dl id='FlKWO'><fieldset id='FlKWO'></fieldset></dl></div>
                    1. <small id='FlKWO'></small><noframes id='FlKWO'>