ragtag4 / docker-backup /docker-compose.yml
hugging2021's picture
Upload folder using huggingface_hub
79c7b05 verified
raw
history blame contribute delete
410 Bytes
version: '3.8'
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
ports:
- "11434:11434" # Expose the default Ollama API port
environment:
- OLLAMA_PORT=11434
- OLLAMA_HOST=0.0.0.0
- OLLAMA_MODEL=llama3.1
restart: unless-stopped
api:
image: ragtag:latest
container_name: api
ports:
- "8080:8080"
restart: unless-stopped