ollame / Dockerfile
R1000's picture
Update Dockerfile
8027119 verified
raw
history blame contribute delete
529 Bytes
FROM ollama/ollama:latest
EXPOSE 11434
HEALTHCHECK --interval=10s --timeout=5s --start-period=5s --retries=3 \
CMD curl -fsS http://localhost:11434/api/tags || exit 1
ENTRYPOINT []
CMD bash -c "\
ollama serve & \
sleep 5 && \
ollama pull hf.co/unsloth/gemma-3-270m-it-qat-GGUF:F16 && \
ollama pull deepseek-r1:1.5b && \
ollama pull scb10x/typhoon2.1-gemma3-4b && \
ollama pull mxbai-embed-large:335m && \
ollama pull qwen2.5-coder:1.5b && \
ollama pull qwen3:0.6b && \
ollama pull qwen3:1.7b && \
wait"