Skip to content

Instantly share code, notes, and snippets.

@jasonwarta
Created February 27, 2019 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonwarta/a09cefb422e77babde627a607be611f6 to your computer and use it in GitHub Desktop.
Save jasonwarta/a09cefb422e77babde627a607be611f6 to your computer and use it in GitHub Desktop.
Load .env on Windows
foreach($line in Get-Content docker.env) {
$new_env_var = "`$env:" + $line.replace('=', ' = "') + '"'
Invoke-Expression $new_env_var
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment