From 52853f1784c6cb3fce6277a0650c81fb6ef06fb2 Mon Sep 17 00:00:00 2001 From: John LaGrone Date: Wed, 29 Jul 2026 09:13:27 -0500 Subject: [PATCH 1/3] bump ollama version --- containers/ollama/build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/ollama/build_container.sh b/containers/ollama/build_container.sh index 53db8a66..30131ad2 100755 --- a/containers/ollama/build_container.sh +++ b/containers/ollama/build_container.sh @@ -4,7 +4,7 @@ # TODO: MP should pull a CUDA enabled version instead? # specify version -VERSION="0.17.7" +VERSION="0.32.5" TAG=${VERSION} IMAGE_NAME="ollama" MODULE_FOLDER="testing/ollama" From 4efb31fb59452e870a274e20a597abb9265c108c Mon Sep 17 00:00:00 2001 From: John LaGrone Date: Wed, 29 Jul 2026 09:14:44 -0500 Subject: [PATCH 2/3] add module for new ollama --- .../m3/applications/testing/ollama/0.32.5.lua | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/m3/applications/testing/ollama/0.32.5.lua diff --git a/modules/m3/applications/testing/ollama/0.32.5.lua b/modules/m3/applications/testing/ollama/0.32.5.lua new file mode 100644 index 00000000..53cb3b36 --- /dev/null +++ b/modules/m3/applications/testing/ollama/0.32.5.lua @@ -0,0 +1,22 @@ + +help([[ +Name: Ollama +Version: 0.32.5 +Website: https://ollama.com/ + +Ollama is an open-source tool that allows you to run large language models (LLMs) like Llama 3 and Mistral directly on your local machine + +]]) +whatis("Name: Ollama") +whatis("Version: ollama:0.32.5") +whatis("Category: Ollama") +whatis("URL: https://hub.docker.com/r/ollama/ollama") +whatis("Description: Provides access to Ollama through a container built with Apptainer") +family("Ollama") + +always_load('apptainer') +local sif_file = '/hpc/m3/containers/ollama/ollama_0.32.5.sif' + +setenv('CONTAINER_IMAGE', sif_file) +source_sh("bash", "/hpc/m3/apps/ollama/helper_scripts/ollama.sh") + From cd325155bec40793720bc8f2a1ddb6fc55b13382 Mon Sep 17 00:00:00 2001 From: John LaGrone Date: Wed, 29 Jul 2026 09:17:06 -0500 Subject: [PATCH 3/3] add module for newer ollama --- modules/mp/apps/testing/ollama/0.32.5.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/mp/apps/testing/ollama/0.32.5.lua diff --git a/modules/mp/apps/testing/ollama/0.32.5.lua b/modules/mp/apps/testing/ollama/0.32.5.lua new file mode 100644 index 00000000..53cb3b36 --- /dev/null +++ b/modules/mp/apps/testing/ollama/0.32.5.lua @@ -0,0 +1,22 @@ + +help([[ +Name: Ollama +Version: 0.32.5 +Website: https://ollama.com/ + +Ollama is an open-source tool that allows you to run large language models (LLMs) like Llama 3 and Mistral directly on your local machine + +]]) +whatis("Name: Ollama") +whatis("Version: ollama:0.32.5") +whatis("Category: Ollama") +whatis("URL: https://hub.docker.com/r/ollama/ollama") +whatis("Description: Provides access to Ollama through a container built with Apptainer") +family("Ollama") + +always_load('apptainer') +local sif_file = '/hpc/m3/containers/ollama/ollama_0.32.5.sif' + +setenv('CONTAINER_IMAGE', sif_file) +source_sh("bash", "/hpc/m3/apps/ollama/helper_scripts/ollama.sh") +