Compare commits

...

3 commits

Author SHA1 Message Date
sid
eb9a06e43d Merge pull request 'open-webui: disable ollama api' (#18) from develop into master
Some checks failed
Deploy configs / deploy-configs (push) Failing after 3m0s
Reviewed-on: #18
2026-04-15 23:49:19 +02:00
sid
7ac1decd2e open-webui: 0.8.5 -> 0.8.12
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 20s
Flake check / flake-check (pull_request) Successful in 19s
2026-04-15 23:47:31 +02:00
sid
3f19fe7f0a open-webui: disable ollama api
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 19s
Flake check / flake-check (pull_request) Successful in 19s
2026-04-15 23:35:12 +02:00

View file

@ -2,6 +2,7 @@
inputs,
constants,
config,
pkgs,
...
}:
@ -10,13 +11,21 @@
services.open-webui-oci = {
enable = true;
image = pkgs.dockerTools.pullImage {
imageName = "ghcr.io/open-webui/open-webui";
imageDigest = "sha256:8113fa5510020ef05a44afc0c42d33eabeeb2524a996e3e3fb8c437c00f0d792";
hash = "sha256-KxMUORhvLb/MMc8gv3xULNgnAzO1N+Qi2/1lHzbuK6Q=";
finalImageName = "ghcr.io/open-webui/open-webui";
finalImageTag = "0.8.12";
};
externalUrl = "https://" + constants.services.open-webui-oci.fqdn;
port = 8083;
# environmentFile = config.sops.templates."open-webui-oci/environment".path;
# environment = {
# AUDIO_STT_ENGINE = "openai";
# AUDIO_TTS_ENGINE = "openai";
# };
environment = {
# AUDIO_STT_ENGINE = "openai";
# AUDIO_TTS_ENGINE = "openai";
ENABLE_OLLAMA_API = "False";
};
};
# sops = {