merge in poseidon configs temporarily

This commit is contained in:
NyxErinys 2026-05-19 20:02:39 -05:00
parent ca8d2c7262
commit 26842b27a6
13 changed files with 685 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{
"open-webui" = {
image = "ghcr.io/open-webui/open-webui:main";
ports = [
"3002:8080/tcp"
];
volumes = [
"/Velaris/Docker/ai/open-webui-conf:/app/backend/data"
];
};
"ollama" = {
image = "ollama/ollama";
ports = [
"11434:11434/tcp"
];
environment = {
NVIDIA_DRIVER_CAPABILITIES = "all";
NVIDIA_VISIBLE_DEVICES = "all";
};
extraOptions = [ "--device" "nvidia.com/gpu=all" ];
volumes = [
"/Velaris/Docker/ai/ollama-conf:/root/.ollama"
];
};
}