Skip to content

Commit c3b1e72

Browse files
committed
More ollama models
1 parent e78bbc8 commit c3b1e72

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

opencog/ollama/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@ WORKDIR /home/opencog
2626

2727
COPY /scripts/ /home/opencog
2828

29-
# Pull model. We're gonna try qwen3 to start.
29+
# 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.
3032
RUN ollama serve & \
3133
PID=$! && \
3234
until ollama list > /dev/null 2>&1; do sleep 1; done && \
3335
ollama pull qwen3:8b ; \
36+
ollama pull nomic-embed-text ; \
3437
kill $PID 2>/dev/null; true
3538

3639
EXPOSE 11434

0 commit comments

Comments
 (0)