ollama / Dockerfile
iricardoxd's picture
Update Dockerfile
8c33e6e verified
raw
history blame contribute delete
519 Bytes
FROM ollama/ollama:latest
# Configura las variables de entorno para permitir conexiones externas
ENV OLLAMA_HOST=0.0.0.0
ENV OLLAMA_ORIGINS="*"
ENV OLLAMA_NUM_PARALLEL=30
ENV OLLAMA_MAX_LOADED_MODELS=2
ENV OLLAMA_MAX_QUEUE=1024
# Custom user is required for permissions and stuff
RUN useradd --home /home/container container
COPY . /home/container
RUN chown -R container /home/container
RUN chmod 777 /home/container -R
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container