We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78bbc8 commit c3b1e72Copy full SHA for c3b1e72
1 file changed
opencog/ollama/Dockerfile
@@ -26,11 +26,14 @@ WORKDIR /home/opencog
26
27
COPY /scripts/ /home/opencog
28
29
-# Pull model. We're gonna try qwen3 to start.
+# Pull several models.
30
+# The `qwen3:8b` model is large (8GB), sophisticated, and needs GPU's.
31
+# The `nomic-embed-text` is small (300 MB), good for embeddings.
32
RUN ollama serve & \
33
PID=$! && \
34
until ollama list > /dev/null 2>&1; do sleep 1; done && \
35
ollama pull qwen3:8b ; \
36
+ ollama pull nomic-embed-text ; \
37
kill $PID 2>/dev/null; true
38
39
EXPOSE 11434
0 commit comments