diff --git a/dappnode_package.json b/dappnode_package.json index 5a3b55d..2a68697 100644 --- a/dappnode_package.json +++ b/dappnode_package.json @@ -1,27 +1,31 @@ { + "architectures": [ + "linux/amd64" + ], + "author": "DAppNode Association (https://github.com/dappnode)", + "categories": [ + "AI" + ], + "description": "Run large language models locally on your DAppNode with GPU acceleration. This package combines Ollama (with AMD ROCm support for GPU inference) and Open WebUI (a ChatGPT-like interface) to provide a complete local AI solution.\n\n**Features:**\n- AMD GPU acceleration via ROCm\n- ChatGPT-like web interface\n- Complete privacy - all processing stays local\n- Support for multiple LLM models (Llama, Mistral, CodeLlama, etc.)\n\n**Requirements:**\n- AMD GPU with ROCm support\n- At least 8GB RAM (16GB+ recommended)\n- Sufficient storage for models (10GB+ recommended)\n\nAccess Open WebUI at http://ollama-openwebui.dappnode:8080", + "license": "GPL-3.0", + "links": { + "ui": "http://ollama-openwebui.dappnode:8080" + }, + "mainService": "webui", "name": "ollama-openwebui.dnp.dappnode.eth", - "version": "0.1.0", + "shortDescription": "Local AI chat interface with Ollama and Open WebUI", + "type": "service", "upstream": [ { + "arg": "OLLAMA_VERSION", "repo": "ollama/ollama", - "version": "v0.20.4", - "arg": "OLLAMA_VERSION" + "version": "v0.20.4" }, { + "arg": "WEBUI_VERSION", "repo": "open-webui/open-webui", - "version": "v0.9.5", - "arg": "WEBUI_VERSION" + "version": "v0.10.2" } ], - "shortDescription": "Local AI chat interface with Ollama and Open WebUI", - "description": "Run large language models locally on your DAppNode with GPU acceleration. This package combines Ollama (with AMD ROCm support for GPU inference) and Open WebUI (a ChatGPT-like interface) to provide a complete local AI solution.\n\n**Features:**\n- AMD GPU acceleration via ROCm\n- ChatGPT-like web interface\n- Complete privacy - all processing stays local\n- Support for multiple LLM models (Llama, Mistral, CodeLlama, etc.)\n\n**Requirements:**\n- AMD GPU with ROCm support\n- At least 8GB RAM (16GB+ recommended)\n- Sufficient storage for models (10GB+ recommended)\n\nAccess Open WebUI at http://ollama-openwebui.dappnode:8080", - "type": "service", - "mainService": "webui", - "author": "DAppNode Association (https://github.com/dappnode)", - "license": "GPL-3.0", - "categories": ["AI"], - "links": { - "ui": "http://ollama-openwebui.dappnode:8080" - }, - "architectures": ["linux/amd64"] + "version": "0.1.1" } diff --git a/docker-compose.yml b/docker-compose.yml index fd202b1..99d9515 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: build: context: webui args: - WEBUI_VERSION: v0.9.5 + WEBUI_VERSION: v0.10.2 container_name: openwebui.ollama-openwebui.dnp.dappnode.eth environment: OLLAMA_BASE_URL: http://ollama:11434