Created
March 21, 2025 03:13
-
-
Save prrao87/e6d032d252cd27a72209fdee0f2de788 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ollama: | |
image: "ollama/ollama:0.6.0" | |
restart: unless-stopped | |
environment: | |
- OLLAMA_HOST=0.0.0.0:11434 | |
- OLLAMA_MODELS=/data/models | |
- OLLAMA_FLASH_ATTENTION=1 | |
- OLLAMA_KV_CACHE_TYPE=q8_0 | |
- OLLAMA_CONTEXT_LENGTH=8192 | |
networks: | |
- homelab-nw-backend | |
volumes: | |
- ./ollama/models:/data/models | |
- ./ollama/modelfiles:/data/modelfiles | |
deploy: | |
resources: | |
reservations: | |
devices: | |
- driver: nvidia | |
count: all | |
capabilities: [gpu] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment