You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the `docker/app/Dockerfile file, it contains the instruction below, but when building the stack using the docker compose build command, it was observed that the flow is not executed even when the variables are defined.
# XDebug
RUN if [ ${XDEBUG_ENABLED} = true ]; then \
pecl install xdebug && docker-php-ext-enable xdebug \
;fi
In the `docker/app/Dockerfile file, it contains the instruction below, but when building the stack using the docker compose build command, it was observed that the flow is not executed even when the variables are defined.
Arquivo:
.env
XDEBUG_ENABLED=true
Arquivo:
docker-compose.yml
I performed a test with the code:
And I received in return:
The text was updated successfully, but these errors were encountered: