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
When specifying an environment variable under the services environment section with interpolation (e.g., MYENV=${DEBUG-1}), the container is created with MYENV set to the literal value "${DEBUG-1}" instead of 1 when the DEBUG environment variable is not set.
Steps to Reproduce:
Define a service in your docker-compose.yml file with an environment variable that uses interpolation:
Description:
When specifying an environment variable under the
services
environment section with interpolation (e.g.,MYENV=${DEBUG-1}
), the container is created withMYENV
set to the literal value"${DEBUG-1}"
instead of1
when theDEBUG
environment variable is not set.Steps to Reproduce:
docker-compose.yml
file with an environment variable that uses interpolation:DEBUG
environment variable is not set in your shell.podman-compose up
.Expected Behavior:
The container should be created with
MYENV
set to1
when theDEBUG
environment variable is not set.Actual Behavior:
The container is created with
MYENV
set to the literal value"${DEBUG-1}"
.Additional Information:
podman-compose
version: 1.3.0podman
version: 5.2.2Linux workspaced50dd4e90744453d-574f885c55-d4494 5.14.0-284.96.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 29 13:37:02 EST 2024 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: