mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
|
|
# Docker Compose for Ollama
|
|
|
|
services:
|
|
ollama:
|
|
image: ollama/ollama:latest # Official image is highly recommended for GPU support
|
|
container_name: ollama
|
|
ports:
|
|
- "11434:11434"
|
|
volumes:
|
|
- ollama_data:/root/.ollama
|
|
# For GPU support (NVIDIA), uncomment the following:
|
|
# deploy:
|
|
# resources:
|
|
# reservations:
|
|
# devices:
|
|
# - driver: nvidia
|
|
# count: all
|
|
# capabilities: [gpu]
|
|
networks:
|
|
- ollama_net
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "-f", "http://localhost:11434/api/tags" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
networks:
|
|
ollama_net:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
ollama_data:
|
|
name: ollama_data
|