Spaces:
Runtime error
Runtime error
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 | |