Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Environment Variables values are not interpolated #1115

Open
achdmbp opened this issue Jan 21, 2025 · 1 comment
Open

Environment Variables values are not interpolated #1115

achdmbp opened this issue Jan 21, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@achdmbp
Copy link

achdmbp commented Jan 21, 2025

Description:

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:

  1. Define a service in your docker-compose.yml file with an environment variable that uses interpolation:
    services:
      myservice:
        environment:
          - MYENV=${DEBUG-1}
  2. Ensure the DEBUG environment variable is not set in your shell.
  3. Run podman-compose up.

Expected Behavior:

The container should be created with MYENV set to 1 when the DEBUG 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.0
  • podman version: 5.2.2
  • Operating System: Linux 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
@achdmbp achdmbp added the bug Something isn't working label Jan 21, 2025
@koen-serneels
Copy link

koen-serneels commented Jan 23, 2025

Facing the same issue. But a bit different:

Works, prints ¨1¨ when DEBUG env var is not defined on host:

services:
  test:
    container_name: test
    image: docker.io/debian
    command: env
    environment:
      - MYENV=${DEBUG:-1}

Does not work, prints ¨${MYENV:-1}¨:

services:
  test:
    container_name: test
    image: docker.io/debian
    command: env
    environment:
      - MYENV=${MYENV:-1}

Seems to be something circular?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants