CoolFace
Apppublic

binary1ne/Ollama

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes
Dockerfile116 linesDownload Raw Back to root
1FROM ollama/ollama:latest2 3# Expose your desired port4EXPOSE 78605 6# Make Ollama listen on 0.0.0.0:7860 (default listens on 11434)7ENV OLLAMA_HOST=0.0.0.0:78608 9RUN mkdir -p /.ollama/ && \10    chmod -R 777 /.ollama/11 12#RUN py --version13 14# Let the base image default ENTRYPOINT (ollama binary) run "serve"15CMD ["serve"]16 
binary1ne/Ollama · CoolFace