Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 20 additions & 16 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
{
"architectures": [
"linux/amd64"
],
"author": "DAppNode Association <admin@dappnode.io> (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 <admin@dappnode.io> (https://github.com/dappnode)",
"license": "GPL-3.0",
"categories": ["AI"],
"links": {
"ui": "http://ollama-openwebui.dappnode:8080"
},
"architectures": ["linux/amd64"]
"version": "0.1.1"
}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down