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

env_file doesn't work with profiles #4069

Open
deepak-endowus opened this issue Apr 2, 2025 · 2 comments · May be fixed by #4073
Open

env_file doesn't work with profiles #4069

deepak-endowus opened this issue Apr 2, 2025 · 2 comments · May be fixed by #4073
Labels
area/compose enhancement New feature or request

Comments

@deepak-endowus
Copy link

Description

It seems that env_files do not get loaded when a profile is set.

Steps to reproduce the issue

Given docker-compose.yml:

services:
  app:
    profiles:
      - sg
    env_file:
      - .env.common
    image: bash
    command: >
      sh -c "echo '--- Environment Variables Inside Container ---' &&
              env | sort &&
              echo '--- End Environment Variables ---' &&
              echo 'Container paused for inspection. Use Ctrl+C to stop.' &&
              sleep 3600" 

and env.common:

TEST_ENV_INJECTION=WORKS

Describe the results you received and expected

When starting the container...

~/s/compose-env-bug ❱ nerdctl compose up --profile sg
WARN[0000] Ignoring: [Profiles]
WARN[0000] Ignoring: service app: [Profiles EnvFiles]
INFO[0000] Ensuring image bash
INFO[0000] Re-creating container compose-env-bug-app-1
INFO[0000] Attaching to logs
app-1 |--- Environment Variables Inside Container ---
app-1 |HOME=/root
app-1 |HOSTNAME=app
app-1 |PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
app-1 |PWD=/
app-1 |SHLVL=1
app-1 |_BASH_BASELINE=5.2.37
app-1 |_BASH_BASELINE_PATCH=37
app-1 |_BASH_LATEST_PATCH=37
app-1 |_BASH_VERSION=5.2.37
app-1 |--- End Environment Variables ---
app-1 |Container paused for inspection. Use Ctrl+C to stop.

The environment var TEST_ENV_INJECTION from env.common is not injected.

It works when the profiles declaration is removed from the docker-compose file.

What version of nerdctl are you using?

nerdctl version 2.0.3

Are you using a variant of nerdctl? (e.g., Rancher Desktop)

Rancher Desktop for macOS

Host information

❱ nerdctl info
Client:
Namespace: default
Debug Mode: false

Server:
Server Version: v1.7.17
Storage Driver: overlayfs
Logging Driver: json-file
Cgroup Driver: cgroupfs
Cgroup Version: 2
Plugins:
Log: fluentd journald json-file none syslog
Storage: native overlayfs
Security Options:
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.6.71-0-virt
Operating System: Alpine Linux v3.20
OSType: linux
Architecture: aarch64
CPUs: 2
Total Memory: 3.824GiB
Name: lima-rancher-desktop
ID: 603d7ff2-0c40-41f5-88fe-efb7c2b63b77

WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled

@deepak-endowus deepak-endowus added the kind/unconfirmed-bug-claim Unconfirmed bug claim label Apr 2, 2025
@fahedouch fahedouch added enhancement New feature or request area/compose and removed kind/unconfirmed-bug-claim Unconfirmed bug claim labels Apr 2, 2025
@yankay
Copy link
Contributor

yankay commented Apr 3, 2025

It seems similar with compose-spec/compose-go#338

@deepak-endowus
Copy link
Author

FWIW, this works:
nerdctl compose --env-file .env.common --profile sg up

@yankay yankay linked a pull request Apr 3, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/compose enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants