From f07a57f4b3e197d1e6e109f25bb2eee7511804eb Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Tue, 18 Mar 2025 10:02:59 +0100 Subject: [PATCH] need more powerful for erigon --- trai.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trai.sh b/trai.sh index 89cc3150..72d1a3b2 100755 --- a/trai.sh +++ b/trai.sh @@ -1,13 +1,13 @@ #!/bin/bash -MODEL=${2:-gemma3:4b} +MODEL=${2:-gemma3:12b} # Check if the container is already running if ! docker ps --filter "name=ollama" --filter "status=running" | grep -q ollama; then echo "Starting ollama container..." docker run -d -v ollama:/root/.ollama --name ollama ollama/ollama docker exec -it ollama apt update - docker exec -it ollama apt install curl + docker exec -it ollama apt install -y curl else echo "ollama container is already running." fi