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
32 changes: 18 additions & 14 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
{
"name": "ollama.dnp.dappnode.eth",
"version": "0.1.0",
"upstream": [
{
"repo": "ollama/ollama",
"version": "v0.30.2",
"arg": "OLLAMA_VERSION"
}
"architectures": [
"linux/amd64"
],
"mainService": "ollama",
"shortDescription": "Local LLM inference engine with GPU acceleration",
"description": "Run large language models locally on your DAppNode with GPU acceleration. Ollama provides a fast and efficient LLM inference engine with AMD ROCm support.\n\n**Features:**\n- AMD GPU acceleration via ROCm\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)",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"categories": [
"AI"
],
"description": "Run large language models locally on your DAppNode with GPU acceleration. Ollama provides a fast and efficient LLM inference engine with AMD ROCm support.\n\n**Features:**\n- AMD GPU acceleration via ROCm\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)",
"license": "GPL-3.0",
"categories": ["AI"],
"links": {
"Models library": "https://ollama.com/library"
},
"architectures": ["linux/amd64"]
"mainService": "ollama",
"name": "ollama.dnp.dappnode.eth",
"shortDescription": "Local LLM inference engine with GPU acceleration",
"type": "service",
"upstream": [
{
"arg": "OLLAMA_VERSION",
"repo": "ollama/ollama",
"version": "v0.30.11"
}
],
"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: ollama
args:
OLLAMA_VERSION: v0.30.2
OLLAMA_VERSION: v0.30.11
container_name: ollama.ollama.dnp.dappnode.eth
volumes:
- ollama:/root/.ollama
Expand Down