20 lines
469 B
Nix
20 lines
469 B
Nix
{ serverIP, serverIP6 } : {
|
|
image = "ghcr.io/open-webui/open-webui:0.6.26";
|
|
ports = [
|
|
"8687:8080"
|
|
];
|
|
environment = {
|
|
TZ = "America/New_York";
|
|
|
|
WEBUI_URL = "http://cj.monster-squeaker.ts.net:8687";
|
|
ANONYMIZED_TELEMETRY = "False";
|
|
DO_NOT_TRACK = "True";
|
|
SCARF_NO_ANALYTICS = "True";
|
|
USE_OLLAMA = "False";
|
|
OLLAMA_BASE_URL = "http://192.168.88.18:11434";
|
|
};
|
|
volumes = [
|
|
"/serverdata/open-webui/data:/app/backend/data"
|
|
];
|
|
}
|