How to get Openwebui environment variables #582
Answered
by
Alirexaa
max2020204
asked this question in
Q&A
-
In library Hosting.Ollama How to get access to openwebui environment variables and set them? Environment variables only setting to Ollama |
Beta Was this translation helpful? Give feedback.
Answered by
Alirexaa
Mar 18, 2025
Replies: 1 comment 1 reply
-
You should use the var ollama = builder.AddOllama("ollama")
.WithDataVolume()
.WithOpenWebUI(c =>
{
//configure open web ui here
c.WithEnvironment("Key", "Value");
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Alirexaa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should use the
configureContainer
parameter ofWithOpenWebUI
: