Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

[BUG] Environment variables are overwritten #47

Open
raydouglass opened this issue Jul 1, 2021 · 1 comment
Open

[BUG] Environment variables are overwritten #47

raydouglass opened this issue Jul 1, 2021 · 1 comment
Labels
bug Something isn't working

Comments

@raydouglass
Copy link
Member

Each docker exec runs with the host's environment variables. This can cause weird issues since things like the PATH is overwritten and the image being used may rely on its specific PATH.

At the very least, PATH from the host should not be used. Potentially nothing from the host should be.

@raydouglass raydouglass added the bug Something isn't working label Jul 1, 2021
@ajschmidt8
Copy link
Member

ajschmidt8 commented Nov 29, 2021

I'm thinking we should handle environment variables like this:

  • Include a checkbox that, when enabled, will automatically pass through all known Jenkins environment variables (we'll have to make a list of all known environment variables provided by Jenkins)
  • Include a text area input box for additional environment variables that should be passed into container
    • Input should accept two formats:
      • ENV_VAR, which copies the ENV_VAR from the host machine if it exists, otherwise defaults to blank (i.e. ENV_VAR=)
      • ENV_VAR=value, which lets users explictly pass environment variables with values

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

No branches or pull requests

2 participants