Stanislau Kviatkouski
Stanislau Kviatkouski
Hello @fleonardelli! You can say to Docker Compose to use non-default _.env_-file by setting `--env-file` option or by using the `env_file` attribute in (one of) _compose.yaml_ file (see https://docs.docker.com/compose/environment-variables/set-environment-variables/).
@fleonardelli when you configure both `env_file` attribute and set the values of environment variables to be mandatory, Docker Compose will still warn about missing values for environment variables from the...
Hello @Wordlesschunk! Show your `Dockerfile`, `compose.yaml`, `compose.override.yaml` and `compose.prod.yaml` files.
Thanks @gtjoseph! This will greatly help in developing new projects and supporting existing projects!
Added some tests to make sure it really works. Fixed the non-working mechanism.
In my case, PHP hangs while processing the request (at the application level). And yes, PHP does not respond to `max_execution_time`, `stream_set_timeout` and `PDO::ATTR_TIMEOUT`.
Hi @jsamouh! Thanks for your interest in this issue! > if you define max_execution_time on mySql to value less than php max_execution_time, you will receive : _Query execution was interrupted,...
Good point, @jsamouh! It would be really useful to have a set of reproducers of this issue. To be able to verify that the error is not only on the...
Hi, @damienfern I'm also interested in this question! For now I'm using the following edits to run FrankenPHP as the built-in user `www-data`. #### frankenphp/docker-entrypoint.sh ```diff @@ -53,8 +53,9 @@...
Found a problem when using the method I described above (using `su ...` instead of `exec ...`): when using `su ...` a chain of subprocesses is created (entrypoint→su→sh→frankenphp), while when...